11

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?

1 Answer 1

26

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> 
Sign up to request clarification or add additional context in comments.

1 Comment

I think this was the link: jquery.10927.n7.nabble.com/… although it provide little more information than that given in the answer

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.