How to keep jQuery from parsing inserted HTML? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T08:45:23Z http://stackoverflow.com/feeds/question/269974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/269974/how-to-keep-jquery-from-parsing-inserted-html 3 How to keep jQuery from parsing inserted HTML? Pim Jager 2008-11-06T19:36:05Z 2008-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>&lt;div id='contentdiv'&gt;bla content bla&lt;/div&gt; </code></pre> <p>and I want to wrap it in the following way: </p> <pre><code>&lt;div id='wrapperDiv'&gt; &lt;div id='beforeDiv'&gt;&lt;/div&gt; &lt;div id='contentDiv'&gt;bla content bla&lt;/div&gt; &lt;div id='afterDiv'&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>I use the following jQuery/Javascript </p> <pre><code>$('#contentDiv').each( function() { var beforeHTML = "&lt;div id='wrapperDiv'&gt;&lt;div id='beforeDiv'&gt;&lt;/div&gt;"; var afterHTML = "&lt;div id='afterDiv'&gt;&lt;/div&gt;&lt;/div&gt;"; $(this).before(beforeHTML); $(this).after(afterHTML); } </code></pre> <p>This however will not result in the correct wrapping, it will create:</p> <pre><code>&lt;div id='wrapperDiv'&gt; &lt;div id='beforeDiv'&gt;&lt;/div&gt; &lt;/div&gt; &lt;div id='contentDiv'&gt;bla content bla&lt;/div&gt; &lt;div id='afterDiv'&gt;&lt;/div&gt; </code></pre> <p>Using wrap() won't work either since that gets jQuery even more mixed up when using:</p> <pre><code>$(this).wrap("&lt;div id='wrapperDiv'&gt;&lt;div id='beforeDiv'&gt;&lt;/div&gt;&lt;div id='afterDiv'&gt;&lt;/div&gt;&lt;/div&gt;"); </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#269981 2 Answer by scunliffe for How to keep jQuery from parsing inserted HTML? scunliffe 2008-11-06T19:39:43Z 2008-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#270022 0 Answer by Douglas Mayle for How to keep jQuery from parsing inserted HTML? Douglas Mayle 2008-11-06T19:51:58Z 2008-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 = "&lt;div id='wrapperDiv'&gt;&lt;div id='beforeDiv'&gt;&lt;/div&gt;"; var afterHTML = "&lt;div id='afterDiv'&gt;&lt;/div&gt;&lt;/div&gt;"; // 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#270045 2 Answer by jishi for How to keep jQuery from parsing inserted HTML? jishi 2008-11-06T20:00:09Z 2008-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#270059 8 Answer by Owen for How to keep jQuery from parsing inserted HTML? Owen 2008-11-06T20:03:35Z 2008-11-06T20:03:35Z <pre><code>$('#contentDiv').each(function() { $(this).wrap('&lt;div id="wrapperDiv"&gt;'); $(this).before('&lt;div id="beforeDiv"&gt;'); $(this).after('&lt;div id="afterDiv"&gt;'); }); </code></pre> <p>produces:</p> <pre><code>&lt;div id='wrapperDiv'&gt; &lt;div id='beforeDiv'&gt;&lt;/div&gt; &lt;div id='contentDiv'&gt;bla content bla&lt;/div&gt; &lt;div id='afterDiv'&gt;&lt;/div&gt; &lt;/div&gt; </code></pre>