jQuery .append()

jQuery .append() inserts content to the end of the target; difference between .append() and .appendTo();

js:

1
2
3
4
5
6
7
$(function() {
 
    $('div').append($('<strong> - append text</strong>'));
 
    $('p').append($('<strong>').attr('title', 'text title attr').text(' - append text with title attr'));
 
});​

html:

1
2
3
<div>div</div>
 
<p>paragraph</p>​

Leave a Comment