|
Tag Attributes
This example shows manipulating TAG attributes using jQuery.
03 | < script type = "text/javascript" src = "js/jquery.js" ></ script > |
04 | < script type = "text/javascript" > |
08 | $("#test").click( function() { |
10 | alert("font-weight ---> " + $("#p1").css("font-weight")); |
11 | alert("color --> " + $("#p1").css("color")); |
13 | $("#p1").css("background-color", "green"); |
23 | < p id = "p1" style = "color:red;font-weight: bold;background-color:pink" > |
30 | < input type = "button" id = "test" value = "Test" /> |
|
|
|