Hi Kovid,
Sorry but I did not get it.
If as you said the
Quote:
javascript is only loaded once the full page has finished loading rather than at the start
|
there would be no way my script could trap the $(document).ready . However it does. You can test it adding
$(document).ready(function(){ alert('1'); });
to the imajes.js . It is as if the page was constructed twice: first with javascript loaded ahead and then with it loaded
afterwards. Is the only explanation I can find to why the two columns view is displayed just to be removed.
In any case, until I find some time for a better solution, just changed the script from
$(document).ready(
to
$(document).dblclick( .
Thanks.