Wednesday, December 28, 2011

set global variable in javascript

source: http://snook.ca/archives/javascript/global_variable

set the global var using this:

window.myVariable = 1;

instead of
var myVariable = 1;

because sometimes its not working :P

0 comments:

Post a Comment