Does anyone happen to know IF and HOW I could re-call all on-load event handlers? I\'m referencing some .js files that I DON\'T have control over, and these .js libraries do
You can do this simple.
Make a function:
function REinit() { /// PLACE HERE ALL YOUR DOC.READY SCRIPTS }
Place just the Reinit() function inside doc.ready:
$(document).ready(function(){ REinit(); });
then after an ajax action just call
REinit();