Is it allowed to use along with jQuery\'s document.ready() handlers? I can\'t find a way to achieve the same funct
document.ready()
.load(), .unload() or .error() are deprecated since jQuery 1.8. Lookup for these aliases in your code and replace them with the .on() method instead
.load(),
.unload()
.error()
$(window).on('load', function(){...})