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()
$(window).load(myfunc) is what you're looking for. If you're working with the load event of an iframe, you can replace window with the iframe element/selector.
$(window).load(myfunc)
window