jQuery append()

The jQuery append() inserts content at the end of the selected elements. Syntax: $(selector).append(content,function(index,html)) Content: Content is a compulsory parameter of the jQuery append() method, as it specifies the content to insert at the end of the selected element. It can accept the following values: HTML elements, jQuery objects, and DOM elements. Function: It is … Read more