I have a text area that I am populating with html code for people to cut & paste from. This textarea is "populated" using JQuery and .html(). with the "population" coming from a <div> elsewhere on the page example:
Div that "holds "population"
<div id="populationhold">this is the html to copy</div>
then the "magic of JQ" to "click" button and populate the textarea
$('#button').click(function(){
updatefunction();
});
and updatefunction is a bit like this:
function updatefunction(){
$('#textarea').html( $('#populationhold').val(); });
}
Now if I try to populate with something like this:
$('#textarea').html( 'this is the <br />html to copy');
The .html() will only print <br> NOT <br />. I have tried (in my way escaping with <br \/> but that doesn't do it. Suggestions please as I must "produce" clean XHTML code not just HTML4 code
The next bit is prob. just the same, but a bit more complex - hence the above to lead into this.
As a "user" of my site you will be able to add/delete bits from the code example:
<div id="populationhold">
<div class="codebit1">this is the <br />html to copy</div>
\n<br/>\
<div class="codebit2">this is more <br />html to copy</div>
</div>
$('#button').click(function(){
$('#textarea').html( $('#populationhold').val();
});
Populating the textarea is fine and works and so does "90%" of the delete. which is something like this:
$('#deletebutton').click(function(){
$('.codebit1').remove();
// This removes .codebit1 from #populationhold and runs the update to ummm update the textarea with the update function
// Note: remove() is OK in this case as #codebit1 is totally dynamically created
updatefunction();
});
The question here is OK I can remove/delete the bits that need deleted - hence the "90%" but how can I get rid of the "now orphan" \n<br/>\n that used to separate the 2 divs in #textarea. OK I can do it without the \n<br/>\n but it makes the code to copy "untidy" on the eye that is why the \n<br/>\n is there - also the \n<br/>\n does ensure that when the code is actually copied the user gets a sensible layout.