|
DOM manipulation
This example shows jQuery way DOM manipulation.
- append(content) inserts content to the end of each element in the set of matched elements.
- prepend(content) inserts content to the beginning of each element in the set of matched elements.
- empty() removes all child nodes of the set of matched elements from the DOM.
03 | < script type = "text/javascript" src = "js/jquery.js" ></ script > |
04 | < script type = "text/javascript" > |
08 | $("#p1b").click( function() { |
10 | //Append content to the inside of every matched element. |
11 | $("#p1").append("< b >Hello</ b >"); |
15 | $("#p2b").click( function() { |
17 | //Prepend content to the inside of every matched element. |
18 | $("#p2").prepend("< b >Hello</ b >"); |
23 | $("#p3b").click( function() { |
34 | < br >< p id = "p1" > TEST < input type = "button" id = "p1b" value = "append" /> </ p > |
36 | < br >< p id = "p2" > TEST < input type = "button" id = "p2b" value = "prepend" /> </ p > |
38 | < br >< p id = "p3" > TEST EMPTY </ p > < input type = "button" id = "p3b" value = "empty" /> |
|
|
|