Примеры для jQuery.holdReady()


Delay the ready event until a custom plugin has loaded.

1
2
3
4
$.holdReady( true );
$.getScript( "myplugin.js", function() {
$.holdReady( false );
});