- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 9801 Articles for Web Development

Updated on 17-Dec-2019 06:47:44
To add table row in jQuery, use the append() method to add table tags.ExampleYou can try to run the following code to learn how to add table row in jQuery:Live Demo
jQuery Add Table Rows
table{
width: 100%;
margin: 25px 0;
border-collapse: collapse;
}
table, th, td{
border: 1px solid #6C220B;
}
table th, table td{
padding: 8px;
text-align: left;
}
$(document).ready(function(){
$(".row").click(function(){
var name = $("#name").val();
var subject = $("#subject").val();
var markup = "" + name + "" + subject + "";
$("table tbody").append(markup);
});
});
Choose
Name
Subject
Amit
Java

Updated on 17-Dec-2019 07:33:22
There may be a situation when you would like to insert new one or more DOM elements in your existing document. jQuery provides various methods to insert elements at various locations.The after( content ) method insert content after each of the matched elements whereas the method before( content ) method inserts content before each of the matched elements.After contentThe after( content ) method inserts content after each of the matched elements.ExampleYou can try to run the following code to learn how to insert an element into DOM, with after() method:Live Demo jQuery after(content) method ... Read More 
Updated on 17-Dec-2019 07:31:06
To remove all the elements from DOM using element ID, use the remove() method.ExampleYou can try to run the following code to remove all the elements from DOM using element ID:Live Demo
$(document).ready(function(){
$("button").click(function(){
$("#mydiv").remove();
});
});
Click to remove all elements
This is some text.
This is demo text.

Updated on 17-Dec-2019 07:30:10
The empty() method removes all child nodes from the set of matched elements whereas the method remove() method removes all matched elements from the DOM.To remove an element, use the remove() method.ExampleYou can try to run the following code to learn how to remove an element from DOM using jQuery:Live Demo
jQuery remove() method
$(document).ready(function() {
$("div").click(function () {
$(this).remove( );
});
});
.div {
margin:10px;
padding:12px;
border:2px solid #666;
width:60px;
}
Click on any square below:

Updated on 17-Dec-2019 07:27:45
To replace a DOM element with the specified HTML or DOM elements using jQuery, use the replaceWith() method. The replaceWith (content) method replaces all matched elements with the specified HTML or DOM elements. This returns the JQuery element that was just replaced, which has been removed from the DOM.ExampleYou can try to run the following code to learn how to replace a DOM element with the specified HTML or DOM element:Live Demo jQuery replaceWith() method $(document).ready(function() { ... Read More 
Updated on 17-Dec-2019 07:20:12
To replace only text inside a div using jQuery, use the text() method.ExampleYou can try to run the following code to replace text inside a div:Live Demo
$(document).ready(function(){
$("#button1").click(function(){
$('#demo').html('Demo text');
});
});
This is it!
Replace

Updated on 17-Dec-2019 07:25:35
The replaceWith( content ) method replaces all matched elements with the specified HTML or DOM elements. This returns the jQuery element that was just replaced, which has been removed from the DOM.Here is the description of all the parameters used by this method −content − Content to replace the matched elements with.ExampleYou can try to run the following code to learn how to work with replaceWith() method:Live Demo jQuery replaceWith() method $(document).ready(function() { ... Read More 
Updated on 17-Dec-2019 08:14:28
To replace innerHTML of a div in jQuery, use the html() or text() method.ExampleYou can try to run the following code to learn how to replace innerHTML of a div:Live Demo
$(document).ready(function(){
$("#button1").click(function(){
$('#demo').html('Demo text');
});
});
This is Amit!
Replace

Updated on 17-Dec-2019 08:12:34
To replace the content of an element using jQuery, use the text() method.ExampleYou can try to run the following code to replace content inside a div:Live Demo
$(document).ready(function(){
$("#button1").click(function(){
$('#demo p').text('The replaced text.');
});
});
The initial text
Replace Text
Advertisements