It shouldn't happen. Can you post the source for the page(s)? Or at the very least post the order of the JavaScript files. Such as:
<script src="jquery.js"></script> <script src="library.js"></script> <script>$(function() { failingFunction(); } );</script> Karl Rudd On 5/31/07, DaveG <[EMAIL PROTECTED]> wrote:
> Script tags are run (though not necessarily "downloaded") > sequentially. I think* that's the key. Although they are run sequentially, js does not wait for complete loading of one library before moving onto process the next. So when you have a slow connection it seems to be possible that the call to somelibraryfunction() fails. ~ ~ Dave