Explanation of JQuery Add Elements with Example.

Add New HTML Content

We will look at four jQuery methods that are used to add new content:

  • append() – Inserts content at the end of the selected elements.
  • prepend() – Inserts content at the beginning of the selected elements.
  • after() – Inserts content after the selected elements.
  • before() – Inserts content before the selected elements.

jQuery append() Method

The jQuery append() method inserts content AT THE END of the selected HTML elements.

<script>

$(document).ready(function(){

$(“.btn-one”).click(function(){

$(“p”).append( “<b> Appended Text</b> .” );

});

$(“.btn-two”).click(function(){

$(“ol”).append( “<li> Appended list Text</li> .” );

});

});

</script>

<body>

<p >This is Roshan Kumar Jha</p>

<ol>

<li> List 1</li>

<li> List 3</li>

<li> List 3</li>

</ol>

<button type=”button” class=”btn-one” >click</button>

<button type=”button” class=”btn-two” >click me</button>

</body>

jQuery prepend() Method

The jQuery prepend() method inserts content AT THE BEGINNING of the selected HTML elements.

<script>

$(document).ready(function(){

$(“.btn-one”).click(function(){

$(“p”).prepend( “<b> Appended Text</b> .” );

});

$(“.btn-two”).click(function(){

$(“ol”).prepend( “<li> Appended list Text</li> .” );

});

});

</script>

<body>

<p >This is Roshan Kumar Jha</p>

<ol>

<li> List 1</li>

<li> List 3</li>

<li> List 3</li>

</ol>

<button type=”button” class=”btn-one” >click</button>

<button type=”button” class=”btn-two” >click me</button>

</body>

jQuery after() and before() Methods

The jQuery after() method inserts content AFTER the selected HTML elements.

The jQuery before() method inserts content BEFORE the selected HTML elements.

<script>

$(document).ready(function(){

$(“.btn-one”).click(function(){

$(“img”).before( ” Before” );

});

$(“.btn-two”).click(function(){

$(“img”).after( “After” );

});

});

</script>

<body>

<img src = images/roshan.jpg alt =”roshan” width = “100”><br>

<button type=”button” class=”btn-one” >click</button>

<button type=”button” class=”btn-two” >click me</button>

</body>

Related Posts

The Complete SEO Playbook for AI Guest Post Generation and Publishing

Introduction Search engine optimization relies heavily on authority, relevance, and trust. While search algorithms continually evolve, securing high-quality backlinks through strategic content placement remains a foundational ranking…

Read More

Top Digital Marketing Workflow Management Tools for Agencies

Introduction Managing a modern digital marketing stack often feels like juggling dozens of disconnected software subscriptions. Marketing managers, agency owners, and SEO specialists frequently find themselves jumping…

Read More

AI Prompt Management Tools: From Basic Prompts to High-Value Digital Assets

Generative artificial intelligence has fundamentally altered how modern enterprises, creative teams, and technical engineers operate. However, as organizations increase their reliance on large language models (LLMs), a…

Read More

Automated Payment Management Software for Modern Enterprises

Finance operations form the backbone of every enterprise, yet many organizations still struggle with fragmented billing tools, delayed collections, and manual reconciliation. Relying on spreadsheets and disconnected…

Read More

The Complete Guide to Choosing the Best Vehicle Rental Management Software

INTRODUCTION Managing a vehicle rental business manually through spreadsheets, paper ledgers, or messaging apps creates significant operational friction. Rental agency owners face recurring challenges including double bookings,…

Read More

The Ultimate Guide to Predictive Alerts and Data Observability

Introduction In modern data-driven enterprises, data pipelines serve as the central circulatory system of business intelligence, operational analytics, machine learning platforms, and executive decision-making. However, as data…

Read More