Hi,
Is it possible to init Fancybox plugin without document.ready() event ? In FF, it seems to be success but not in IE
To explain : I try to init all jquery functions at bottom of my page :
<script type="text/javascript">
$(".overview_picM").fancybox({
'titleShow': false,
'transitionIn': 'elastic',
'transitionOut': 'elastic',
left: picLLeft,
'autoScale': false,
hideOnContentClick: true,
overlayShow: false
});
</script>
</body>
Without document.ready() or window.load, because they slow down.
This is not conventionnal in jquery using, i know, but i have ActiveX, Java Applet or Iframe and all this elements slow down jquery accessibility by using document.Ready or window.load (...)
I have started to implement jquery scripts by this method, and it's successfull for many of my scripts (jquery).
An idea ? Best Regards,
Sebastien
EDIT : See explanation to clarify the needs and solutions, below