![]() Topic awaiting preservation: Ajax / jQuery startup latency |
|
|---|---|
| Author | Thread |
|
Bipolar (III) Inmate From: |
posted 06-30-2011 04:48
Unfortunately, page access is restricted by the customer code: jQuery.noConflict(); // Disable jQuery $ shortcut to prevent conflicts with
// other libraries.
(function($) { // Wrap in a closure. Creates a safe scope to work from.
/*
* Image loader class.
*/
$.argo_iml = (function() {
var init, open, codeBase, documentBase, _props = this;
... A ton of initialization code which fetches components,
scripts, styles, texts using Ajax...
}
$(document).ready(function(){
$.argo_iml.init();
}
}
|