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()
This works as well:
$(window).load(function(){ // .. myfunc(); // .. });