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
I think it is straight forward to just change the ready event to pjax success
Change it from:
$(document).ready(function() { // page load stuff });
To:
$(document).on('ready pjax:success', function() { // will fire on initial page load, and subsequent PJAX page loads });