Hi Michael Yes i am using the regular <script> tags. I understand what you meant. But considering a situation like this
<script type="text/javascript" src="myevents.js"> $(document).ready(function(){ ...... ..... }) lets say myevents is still being loaded and document.ready has already fired. that would mean, if i have a button and the event is attached from myevents.js, there is a chance that user clicks the button before the event is really attached to it. How can i solve this scenario? How to make the user wait till myevents.js is loaded? Thakns Vru