I was wondering if the load() method can be a custom function like:
$(document).ready(function(){
$("#id").load(url, myfunc());
});
the myfunc() is a custom function. Or if that doesnot work,can the callback function calls a another custom function like:
$(document).ready(function(){
$("#id").load(url, function(){
myfunc();
})
;});
myfuncevaluates to immediately. (Take off the extra parenthesis.) – user166390 Apr 1 '12 at 4:43