vote up 2 vote down star

My page has an outside script that contains some jQuery. Most of it runs fine except this bit:

$(document).ready(function(){
    alert('x');						   
});

That bit of code works fine when i run it inside the HTML page but not in the .js file. I have no other library in the HTML, i do have a window.onload inside the HTML but if i remove it, the jQuery bit still does not work. And it does not generate any error message.

Any suggestions?

flag

2 Answers

vote up 8 vote down

As this was the problem in this discussion, are you sure that you include jQuery before including your external script ?

<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="externalScript.js"></script>
link|flag
vote up -1 vote down

Thank you. That was my problem. :D

link|flag
1  
Cool... Could you mark my answer as accepted, so that people know that this problem has been solved ? Also, please note that you should not answer your own question, except to actually provide your own solution. Use comments instead. – Wookai Mar 3 at 22:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.