Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

At the moment I have a HTML where files can be dynamically loaded.

I am using the load() function. Within the loaded HTML file, there is an external script that I would like to execute, but it won't execute? The script will execute if I go to the HTML document directy, but not when I am using the load function.

Here is my code:

Index Page

$(".pages").load("page1.html");

page1.html

<script type="text/javascript" src="alert.js"></script>
<h1>Welcome to page one</h1>

Alert.js

alert("This page has loaded");

I can confirm the rest of page1.html appears, just the javascript file won't

Help will be appreciated guys!

Thanks Peter

share|improve this question
Can you confirm page1.html is loading alert.js correctly? Check the Network console in your browser to make sure it's coming back with a status 200. Well, make sure it isn't a 4xx or 5xx code. – Gromer Oct 2 '12 at 23:12
Look that stackoverflow.com/questions/889967/… – Mate Oct 2 '12 at 23:14
It is loading correctly if I went to mysite.com/page1.html. It doesn't load it when I use the load() function with jQuery. – Peter Stuart Oct 2 '12 at 23:14
@Mate the reason why his script wasn't working was because he has the head tags in his external html doc, I don't – Peter Stuart Oct 2 '12 at 23:16
Do you see any errors in your console? It might be a path issue, path to the JS file should be valid from the containing page – hsalama Oct 2 '12 at 23:19
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.