While we use
jQuery(window).load(function($){});
function it's throwing an Uncaught TypeError: $ is not a function
Instead of you can use:
jQuery(document).ready(function ($) {
setTimeout(function(){
//Isotope Code place here
}, 3000);
});
It's working fine.