I'm adding resizable to several div tags that are part of a complex page. But the $(document).ready() if executing too early. Not everything has been parsed and the resizable fails.
How do I get jQuery to really wait until the document is ready?
I've tried...
$(document).ready()
$(document).load()
$(window).load()
By adding a temporary button with the same code as these, that I click after the page is rendered, I get the proper resizable UI.
I'm using jQuery v1.4.2 and jQuery UI v1.8.4 with Firefox v3.6.8.