[jQuery] How to run cf regex (or regular regex) on this code?

[jQuery] How to run cf regex (or regular regex) on this code?

<div>Normally, when I'm trying to cause a passage of text to respond to line breaks, I use this ColdFusion code:</div>
<div> </div>
<div>#replace(myText, '#chr(13)#', '
', 'all')#</div>
<div> </div>
<div>and that keeps the line breaks intact when the text is output to the screen.</div>
<div> </div>
<div>But how can I write that code inside this js?  Or do I have to do it outside the js?</div>
<div>("row[4]" represents the text)</div>
<div> </div>
<div>out.push('<div id="sectionTextDIV">' + row[4] + '</div>');</div>
<div> </div>
<div>out.push('<div id="sectionTextDIV"><cfoutput>#replace(' + row[4] + ', '#chr(13)#', '
', 'all')#<cfoutput></div>');</div>
<div> </div>
<div>That wouldn't work anyway, since the HTML is being inserted into the DOM via jQuery,</div>
<div>so the page isn't being refreshed to trigger the ColdFusion processing.</div>
<div> </div>
<div>The text, coming from an AJAX function is delivered to the display function in</div>
<div>response.QGETSTORYINFO.DATA, and is delivered from a ColdFusion component method</div>
<div>via storyStruct.QGETSTORYINFO, so, there's not a chance, that I can see to run the</div>
<div>replace operation on the code in the method.</div>
<div> </div>
<div>Can I somehow run the replace on all the qGetStoryInfo.section_text data after it's queried,</div>
<div>then "reinsert" it into the struct, storyStruct.QGETSTORYINFO ???</div>
<div> </div>
<div>Suggestions?</div>
<div> </div>
<div>Thanks,</div>
<div> </div>
<div>Rick<br clear="all">
--
-----------------------------------------------------------------------------------------------------------------------------------------------------------------
"It has been my experience that most bad government is the result of too much government." - Thomas Jefferson
</div>