jQuery contains powerful methods for changing and manipulating HTML elements and attributes.
jQuery DOM Manipulation
One very important part of jQuery, is the possibility to manipulate the DOM.
jQuery comes with a bunch of DOM related methods, that makes it easy to access and manipulate elements and attributes.
Get Content - text(), html(), and val()
Three simple, but useful, jQuery methods for DOM manipulation is:
-
text() - Sets or returns the text content of selected elements
-
html() - Sets or returns the content of selected elements (including HTML markup)
-
val() - Sets or returns the value of form fields
The following example demonstrates how to get content with the jQuery text() and html() methods:
$("#btn1").click(function(){ alert("Text: " + $("#test").text()); }); $("#btn2").click(function(){ alert("HTML: " + $("#test").html()); });
The following example demonstrates how to get the value of an input field with the jQuery val() method:
$("#btn1").click(function(){ alert("Value: " + $("#test").val()); });
Get Attributes - attr()
The jQuery attr() method is used to get attribute values.
The following example demonstrates how to get the value of the href attribute in a link:
$("button").click(function(){
alert($("#w3s").attr("href"));
});
Jquery Get content & Attributes
Are the Keywords