How to keep jQuery from parsing inserted HTML? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T08:45:23Zhttp://stackoverflow.com/feeds/question/269974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/269974/how-to-keep-jquery-from-parsing-inserted-html3How to keep jQuery from parsing inserted HTML?Pim Jager2008-11-06T19:36:05Z2008-11-06T20:03:35Z
<p>Hello,</p>
<p>Does anyone know how to stop jQuery fromparsing html you insert through before() and after()? Say I have an element:</p>
<pre><code><div id='contentdiv'>bla content bla</div>
</code></pre>
<p>and I want to wrap it in the following way: </p>
<pre><code><div id='wrapperDiv'>
<div id='beforeDiv'></div>
<div id='contentDiv'>bla content bla</div>
<div id='afterDiv'></div>
</div>
</code></pre>
<p>I use the following jQuery/Javascript </p>
<pre><code>$('#contentDiv').each( function() {
var beforeHTML = "<div id='wrapperDiv'><div id='beforeDiv'></div>";
var afterHTML = "<div id='afterDiv'></div></div>";
$(this).before(beforeHTML);
$(this).after(afterHTML);
}
</code></pre>
<p>This however will not result in the correct wrapping, it will create:</p>
<pre><code><div id='wrapperDiv'>
<div id='beforeDiv'></div>
</div>
<div id='contentDiv'>bla content bla</div>
<div id='afterDiv'></div>
</code></pre>
<p>Using wrap() won't work either since that gets jQuery even more mixed up when using:</p>
<pre><code>$(this).wrap("<div id='wrapperDiv'><div id='beforeDiv'></div><div id='afterDiv'></div></div>");
</code></pre>
<p>How should I solve this?<br />
Thanks in advance!</p>
http://stackoverflow.com/questions/269974/how-to-keep-jquery-from-parsing-inserted-html/269981#2699812Answer by scunliffe for How to keep jQuery from parsing inserted HTML?scunliffe2008-11-06T19:39:43Z2008-11-06T19:39:43Z<p>your markup isn't complete...before and after are to take complete nodes only...</p>
<p>what you are trying to do is <strong>wrap</strong> your content, which is different.</p>
<p>you want this:</p>
<p>.wrap(html);</p>
<p><a href="http://docs.jquery.com/Manipulation/wrap#html" rel="nofollow">http://docs.jquery.com/Manipulation/wrap#html</a></p>
http://stackoverflow.com/questions/269974/how-to-keep-jquery-from-parsing-inserted-html/270022#2700220Answer by Douglas Mayle for How to keep jQuery from parsing inserted HTML?Douglas Mayle2008-11-06T19:51:58Z2008-11-06T19:57:39Z<p>I'm sorry, but this one should be obvious. In your case, you can't use wrap because it sticks the original node into the deepest node it finds in the wrapping HTML. You don't want that. Instead, read out the HTML from your object and combine it with what you have:</p>
<pre><code>$('#contentDiv').each( function() {
var beforeHTML = "<div id='wrapperDiv'><div id='beforeDiv'></div>";
var afterHTML = "<div id='afterDiv'></div></div>";
// This line below will do it...
$(this).html(beforeHTML + $(this).html() + afterHTML);
}
</code></pre>
http://stackoverflow.com/questions/269974/how-to-keep-jquery-from-parsing-inserted-html/270045#2700452Answer by jishi for How to keep jQuery from parsing inserted HTML?jishi2008-11-06T20:00:09Z2008-11-06T20:00:09Z<p>I think you're approaching it wrong. Think about what you actually want to achieve...</p>
<p>You want to WRAP everything with one div. Then insert 1 div before, and 1 div after.</p>
<p>so do .wrap() first, then append before and after-divs relative to the content-div.</p>
<p>if you happen to have the actual HTML as a string (from an XHR or something) then you need to read out the html and concatenate it yourself as Douglas Mayle suggested.</p>
http://stackoverflow.com/questions/269974/how-to-keep-jquery-from-parsing-inserted-html/270059#2700598Answer by Owen for How to keep jQuery from parsing inserted HTML?Owen2008-11-06T20:03:35Z2008-11-06T20:03:35Z<pre><code>$('#contentDiv').each(function() {
$(this).wrap('<div id="wrapperDiv">');
$(this).before('<div id="beforeDiv">');
$(this).after('<div id="afterDiv">');
});
</code></pre>
<p>produces:</p>
<pre><code><div id='wrapperDiv'>
<div id='beforeDiv'></div>
<div id='contentDiv'>bla content bla</div>
<div id='afterDiv'></div>
</div>
</code></pre>