tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 jQuery > Basic > Tag Attributes

Tag Attributes 

This example shows manipulating TAG attributes using jQuery.

File Name  :  
source/JQUERY/basic/tagattribs.html 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01<html>
02 <head>
03 <script type="text/javascript" src="js/jquery.js"></script>
04 <script type="text/javascript">
05 
06$(function(){
07 
08  $("#test").click( function() {
09 
10    alert("font-weight ---> " + $("#p1").css("font-weight"));
11    alert("color --> " + $("#p1").css("color"));
12 
13    $("#p1").css("background-color", "green");
14 
15  });
16 
17});
18 
19 </script>
20 </head>
21 <body>
22 
23    <p id="p1" style="color:red;font-weight: bold;background-color:pink">
24    <br>
25    Test Paragraph.
26    <br>
27       
28    </p>
29 
30    <input type="button" id="test" value="Test"  />
31 
32 </body>
33 </html>




 
  


  
bl  br