This seems to be a problem related to Safari only. I've tried 4 on mac and 3 on windows and am still having no luck.

What I'm trying to do is load an external html file and have the Javascript that is embedded execute.

The code I'm trying to use is this:

$("#myBtn").click(function() {
    $("#myDiv").load("trackingCode.html");
});

trackingCode.html looks like this (simple now, but will expand once/if I get this working):

<html>
<head>
    <title>Tracking HTML File</title>
    <script language="javascript" type="text/javascript">
    	alert("outside the jQuery ready");
    	$(function() {
    		alert("inside the jQuery ready");
    	});
    </script>
</head>

<body>
</body>
</html>

I'm seeing both alert messages in IE (6 & 7) and Firefox (2 & 3). However, I am not able to see the messages in Safari (the last browser that I need to be concerned with - project requirements - please no flame wars).

Any thoughts on why Safari is ignoring the Javascript in the trackingCode.html file?

Eventually I'd like to be able to pass Javascript objects to this trackingCode.html file to be used within the jQuery ready call, but I'd like to make sure this is possible in all browsers before I go down that road.

Thanks for your help!

link|improve this question

feedback

9 Answers

up vote 26 down vote accepted

You are loading an entire HTML page into your div, including the html, head and body tags. What happens if you do the load and just have the opening script, closing script, and JavaScript code in the HTML that you load?

Here is the driver page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery Load of Script</title>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
   google.load("jquery", "1.3.2");
</script>
<script type="text/javascript">
   $(document).ready(function(){
    $("#myButton").click(function() {
    $("#myDiv").load("trackingCode.html");
    });
   });
</script>
</head>
<body>
<button id="myButton">Click Me</button>
<div id="myDiv"></div>
</body>
</html>

Here is the contents of trackingCode.html:

<script type="text/javascript">
    alert("Outside the jQuery ready");
    $(function() {
    alert("Inside the jQuery ready");
    });
 </script>

This works for me in Safari 4.

Update: Added DOCTYPE and html namespace to match the code on my test environment. Tested with Firefox 3.6.13 and example code works.

link|improve this answer
Got it, thanks Tony! Removing the <html>, <head> and <body> tags seemed to do the trick. – Mike May 20 '09 at 21:18
i was wandering whether i should do a seperate ajax call getJson() because i heard of this.. But if it works like that it is ok!! I would call the same queries twice otherwise – Parhs Oct 23 '10 at 16:46
Your code is not actually working in FF (IE8 - working fine). Is there a way to make this work in all the browsers? Thanks – user201820 Jan 21 '11 at 0:46
@Maxim Galushka I still had these files in my personal workstation. Without modification, they produced the correct behavior. I am using Firefox 3.6.13 on Windows 7. – Tony Miller Jan 25 '11 at 13:57
feedback

I realize this is somewhat of an older post, but for anyone that comes to this page looking for a similar solution...

http://api.jquery.com/jQuery.getScript/

jQuery.getScript( url, [ success(data, textStatus) ] )
  • url - A string containing the URL to which the request is sent.

  • success(data, textStatus) - A callback function that is executed if the request succeeds.

$.getScript('ajax/test.js', function() {
  alert('Load was performed.');
});
link|improve this answer
feedback
$("#images").load(location.href+" #images",function(){
    $.getScript("js/productHelper.js"); 
});
link|improve this answer
really is $.getScript() good solution in this problem ;) +1 – Gunslinger_ Jul 17 '11 at 17:31
feedback

This doesn't seem to work if you're loading the HTML field into a dynamically created element.

$('body').append('<div id="loader"></div>');
$('#loader').load('htmlwithscript.htm');

I look at firebug DOM and there is no script node at all, only the HTML and my CSS node.

Anyone have come across this?

link|improve this answer
Yup, same problem. – Dex Aug 19 '10 at 5:33
I had to load the html, then in the callback, use $.getScript to get the javascript. – Dex Aug 19 '10 at 5:55
feedback

A other version of John Pick's solution just before, this works fine for me :

jQuery.ajax({
   ....
   success: function(data, textStatus, jqXHR) {
       jQuery(selecteur).html(jqXHR.responseText);
       var reponse = jQuery(jqXHR.responseText);
       var reponseScript = reponse.filter("script");
       jQuery.each(reponseScript, function(idx, val) { eval(val.text); } );
   }
   ...
});
link|improve this answer
feedback

Test with this in trackingCode.html:

$(function() { show_alert(); function show_alert() { alert("Inside the jQuery ready"); } });
link|improve this answer
feedback

I have try to make one jquery plugin for html loading function. Please refer the following link.

http://aspnet-ajax-aspnetmvc.blogspot.com/2010/10/dyamic-html-loader.html

Please suggest me to improve it more.

Thanks, Mohan

link|improve this answer
feedback

You've almost got it. Tell jquery you want to load only the script:

$("#myBtn").click(function() {
    $("#myDiv").load("trackingCode.html script");
});
link|improve this answer
feedback

Well I had the same problem that only seemed to happen for Firefox, and I couldn't use another JQuery command except for .load() since I was modifying the front-end on exisitng PHP files...

Anyways, after using the .load() command, I embedded my JQuery script within the external HTML that was getting loaded in, and it seemed to work. I don't understand why the JS that I loaded at the top of the main document didn't work for the new content however...

link|improve this answer
Easy, because the new content was not there when the script got executed. – Matteo Mar 20 at 9:10
feedback

protected by Community Jun 8 '11 at 5:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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