| Reintroducing myself. in Introduce Yourself |
|
|
| Thought I had a virus but maybe its hardware issue? in Windows Discussion & Support |
|
|
| Gran Turismo 6 Comes to PS3 for the Holidays, Trailer Inside in Sony Console |
|
|
| Homeless Man's Dog Saved in Real World News |
|
|
| Lenovo Takes on MacBook Air with ThinkPad X1 Carbon Touch in Back Page News |
|
Posted 12 June 2012 - 14:20
Posted 12 June 2012 - 20:09
Posted 13 June 2012 - 07:03
soffcore, on 12 June 2012 - 20:09, said:
Posted 13 June 2012 - 08:20
The_Decryptor, on 13 June 2012 - 07:30, said:
Posted 13 June 2012 - 08:35
Posted 13 June 2012 - 08:48
The_Decryptor, on 13 June 2012 - 08:35, said:
Posted 13 June 2012 - 11:27
Posted 13 June 2012 - 11:40
The_Decryptor, on 13 June 2012 - 11:27, said:
Posted 13 June 2012 - 16:26
/*java script up here*/
var remoteStorage = new CrossDomainStorage("http://example.dev", "/server.html");
remoteStorage.requestValue("lookforme", function(key, value){
alert("The value for '" + key + "' is '" + value + "'");
});
alert ("alert 2 : I want to print/use value on the outside" + value);
/*javascript down here*/
Posted 13 June 2012 - 16:46
/*java script up here*/
var remoteStorage = new CrossDomainStorage("http://example.dev", "/server.html");
value = remoteStorage.requestValue("lookforme", function(key, value){
alert("The value for '" + key + "' is '" + value + "'");
return value;
});
alert ("alert 2 : I want to print/use value on the outside" + value);
/*javascript down here*/
Posted 14 June 2012 - 07:14
/*java script up here*/
var remoteStorageValue = "";
var remoteStorage = new CrossDomainStorage("http://example.dev", "/server.html");
remoteStorage.requestValue("lookforme", function(key, value){
alert("The value for '" + key + "' is '" + value + "'");
remoteStorageValue = value;
});
alert ("alert 2 : I want to print/use value on the outside" + remoteStorageValue);
/*javascript down here*/
Posted 14 June 2012 - 09:18
The_Decryptor, on 14 June 2012 - 07:14, said:
/*java script up here*/
var remoteStorageValue = "";
var remoteStorage = new CrossDomainStorage("http://example.dev", "/server.html");
remoteStorage.requestValue("lookforme", function(key, value){
alert("The value for '" + key + "' is '" + value + "'");
remoteStorageValue = value;
});
alert ("alert 2 : I want to print/use value on the outside" + remoteStorageValue);
/*javascript down here*/