vote up 0 vote down star

What if I want to APPEND to it instead of completely replacing it?

flag

4 Answers

vote up 7 vote down check

if to append AFTER

append

appendTo

if to append BEFORE

prepend

prependTo

link|flag
vote up 0 vote down

Use the += string operator.

var element = document.getElementById('yourId')/
element.innerHTML += 'More content!';

This is without using jQuery.

link|flag
vote up 0 vote down
$(whatever).html($(whatever).html() + string);
link|flag
vote up 2 vote down

Strangely enough there's a jQuery method called append().

<div id="x"><em>Hello</em> mum</div>
<button onclick="$('#x').append(' you slag')">Insult please</button>

Don't use x.html(x.html()+'something') or its non-jQuery counterpart innerHTML+= 'something' to add content to a document. You will be serialising the current content to HTML, then changing it, then parsing it back into objects. Apart from this being unnecessarily slow, you'll lose any non-serialisable data such as event handlers, JS references and form field values.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.