I am adding resizable to several div tags that are part of a complex page. But $ (document) .ready () if executed too early. Not everything was analyzed, and resizing failed.
How do I make jQuery really wait until the document is ready?
I tried...
$(document).ready() $(document).load() $(window).load()
Adding a temporary button with the same code as me, after clicking the page, I get the correct resizable interface.
I am using jQuery v1.4.2 and jQuery UI v1.8.4 with Firefox v3.6.8.
source share