I've registered on a page scripts
<html>
<body>
.....
<body>
<script src="prototype.js" type=\"text/javascript\"><script>
<script src="global.js" type=\"text/javascript\"><script>
<script src="page1.js" type=\"text/javascript\"><script>
</html>
in global.js I've registered an event observer on event dom:loaded
document.observe('dom:loaded', function(){ ... });
which makes global preparations
and in page1.js I also add an observer on the same event - to do page
int
In IE9 order of execution of event observer right - first in global.js
and the second in page1.js
But in IE8 the order wrong - first page1.js and then global.js
Help me please what to do!
--
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en.