Script Tags, jQuery, And Html(), Text() And Contents()

Posted January 26, 2010 at 2:00 PM by Ben Nadel

Tags: Javascript / DHTML

The other day, Matt Olson left a comment on my jQuery and ColdFusion rating system post that the jQuery script I had was not working in Internet Explorer (IE). I confirmed this on my local copy and eventually narrowed it down to a discrepancy in the way IE can access the contents of a non-Javascript Script tag. Originally, I had been using the text() method to extract the Script contents, which worked fine in FireFox. In IE, however, I had to switch over to the html() method.

After this discovery, I figured I would run the various jQuery script-content-access methods in IE and FireFox to see what else I might discover. Here is the test code that I ran:

  • <!DOCTYPE HTML>
  • <html>
  • <head>
  • <title>jQuery: Scripts Tags And Text(), HTML(), and Contents()</title>
  • <script type="text/javascript" src="jquery-1.4.js"></script>
  • <script type="text/javascript">
  •  
  • // When the DOM is ready, init scripts.
  • jQuery(function( $ ){
  •  
  • // Get a reference to our Script tag.
  • var script = $( "#data" );
  •  
  • // Get a reference to our output tags.
  • var textOutput = $( "#text-output" );
  • var htmlOutput = $( "#html-output" );
  • var contentsTextOutput = $( "#contents-text-output" );
  • var contentsHtmlOutput = $( "#contents-html-output" );
  •  
  • // Use the various approachs to output the contents
  • // of the Script tag to the document.
  •  
  • // Text.
  • textOutput.text( script.text() );
  •  
  • // Html.
  • htmlOutput.text( script.html() );
  •  
  • // Contents - Text.
  • contentsTextOutput.text( script.contents().text() );
  •  
  • // Contents - Html.
  • contentsHtmlOutput.text( script.contents().html() );
  •  
  • });
  •  
  • </script>
  • </head>
  • <body>
  •  
  • <h1>
  • jQuery: Scripts Tags And Text(), HTML(), and Contents()
  • </h1>
  •  
  • <script id="data" type="application/x-json">
  • {script-content}
  • </script>
  •  
  • <!-- This is where the contents of script will be output. -->
  • <p>
  • TEXT: <span id="text-output"> ... </span>
  • </p>
  •  
  • <p>
  • HTML: <span id="html-output"> ... </span>
  • </p>
  •  
  • <p>
  • CONTENTS (TEXT): <span id="contents-text-output"> ... </span>
  • </p>
  •  
  • <p>
  • CONTENTS (HTML): <span id="contents-html-output"> ... </span>
  • </p>
  •  
  • </body>
  • </html>

As you can see, I have a Script tag with some non-Javascript content. Then, I use the various methods - text(), html() and contents() - to try an access that content and output it to the screen. I tested this on IE6, IE7, IE8, FireFox, Safari, and Chrome. The non-IE browsers were all the same. The IE browsers were all the same which one minor exception: IE6 and IE7 added additional white space that IE8 did not.

IE Browsers (IE6, IE7, ~IE8)

 
 
 
 
 
 
Accessing Script Tag Content With jQuery In IE6, IE7, and IE8. 
 
 
 

Non-IE Browsers (FireFox, Safari, Chrome)

 
 
 
 
 
 
Accessing Script-Tag Content With jQuery And FireFox. 
 
 
 

As you can see, IE was only able to access the Script tag contents using the html() method. All non-IE browsers, on the other hand, were able to use text(), html(), and contents(). None of the browsers, however, were able to access the content using contents().html(). This is not a limitation of the browser or jQuery, but rather a byproduct of the fact that there are no non-text DOM nodes contained within the Script tag.

I cannot figure out why there is extra white space in the IE-based output when it grabs the content via html(). It's as if it is rendering the content using a PRE tag or something (minus the line breaks). That must just be a bug - one that has been fixed in IE8.

All in all, it looks like the html() method is the only cross-browser safe way to access the contents of a Script tag. That's good to know, especially since Script tags act as a very convenient container for HTML templates.



Reader Comments

Feb 12, 2011 at 9:09 AM // reply »
1 Comments

Thank for this post


Feb 12, 2011 at 11:14 AM // reply »
11,238 Comments

@Jeune,

I'm glad you found this helpful.


Apr 12, 2011 at 4:25 PM // reply »
1 Comments

Thanks for the informative post!
I'm looking into using mustache.js to do client side templated html using the script tag to hold the templates, and I would like to keep the templates in a separate HTML file and load that in the script tag through the src attribute, but that does not seem to work. I'm getting to think this is not possible; have you tried to embed HTML templates from a separate file using the script tag, or have other suggestions to achieve this?


Jan
Aug 19, 2011 at 7:34 AM // reply »
3 Comments

Thanks for your tests. I was really wondering why I couldnīt get my script-content with .text() in IE. Now with .html() itīs working fine in all tested browsers.


Aug 22, 2011 at 3:50 PM // reply »
2 Comments

Is it possible to access the json content in the case of a remote src url, as in <script id="data" type="application/x-json" src="<some feed url>">? I can't quite get such a thing to work and was hoping to find a way around xss restrictions...


Jan
Aug 23, 2011 at 2:38 AM // reply »
3 Comments

@Sam: Why don't you use Ajax to read the feed?


Sep 6, 2011 at 8:15 PM // reply »
2 Comments

@Jan I don't believe you can access a feed that isn't in the same domain as the page you're on via jQuery.get(). I ended up using JSONP with yahoo pipes, using document.write("<script ....>") and then as a url parameter I indicate the javascript function to pass the data to once the script loads the data. Handy way to get around XSS issues since there's no equivalent of Flash's crossdomain.xml (or is there?)


Jan
Sep 7, 2011 at 4:12 AM // reply »
3 Comments

How about using a local Ajax-Call to a php file, which reads the remote feed for you? I think something like this should be possible if allow_url_fopen is true in your php.ini.

http://de.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen

http://de.php.net/manual/en/function.file-get-contents.php


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 17, 2013 at 7:42 PM
HashKeyCopier - An AngularJS Utility Class For Merging Cached And Live Data
Ben - thanks so much for posting these Angular articles and findings, they've been a huge help towards learning one of the more 'complex' JavaScript frameworks out there (IMO). I have been using Angu ... read »
May 16, 2013 at 5:01 PM
UPDATE: Parsing CSV Data Files In ColdFusion With csvToArray()
Your code was the closest thing I've found to obtaining some direction for converting ISO fields to values that CF can translate properly. Thank you for posting! ... read »
May 15, 2013 at 10:37 PM
Very Simple Pusher And ColdFusion Powered Chat
hi id making plz easy ... read »
May 15, 2013 at 6:07 PM
Making SOAP Web Service Requests With ColdFusion And CFHTTP
Ben, you once again saved my bacon at work. Thank you, thank you, thank you! ... read »
May 15, 2013 at 4:15 PM
What If All User Interface (UI) Data Came In Reports?
@Josh, Thanks! @Ben, I definitely recommend the David West book "Object Thinking" I've been quoting from. It goes deeply into the philosophy and history of OO programming. His breadth ... read »
May 15, 2013 at 11:36 AM
Ask Ben: Print Part Of A Web Page With jQuery
I found this helpfull when you need to keep (refresh) the original parent page after closing the iframe child print dialog (Hoping you're not using a form at this time so it won't submit again): On ... read »
May 14, 2013 at 7:13 PM
What If All User Interface (UI) Data Came In Reports?
@Jonah, If there's any books you'd recommend on the subject of domain modelling, I'd love to hear it. I just downloaded the free PDF of "Domain Driven Design Quickly". Figured I'd give it ... read »
May 14, 2013 at 6:57 PM
The UX Of Prototyping: Low-Fidelity Is The New High-Fidelity
@Phillip, I'm not sure I follow what you mean? Are you saying that you looked at the list of widgets provided by the jQuery UI and let that be your style guide? ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools