JavaScript: myfunc "onload" jquery.
- "onload" - (a() - "onload" , b() - myfunc()):
var b;
function a(){
b=function(){
alert('In');
}
}
a();
b();
Now, getting back to your real problem: the solution provided by @guradio is by far the best way to move forward using jquery so that it is used.
source
share