Hello,
I've a problem with $.getScript that dosen't seem to interact with my primary script :
var noFocus = true;
$(document).keydown(function (e) {
alert(noFocus);
$.getScript("myscript.js");
});
and myscript.js :
noFocus = false;
But on keydown the alert is ever true... ?