Programs in jQuery
14. Getting attribute value of paragraph.<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Untitled Document</title> <style> h3{ width:300px; border:1px solid #CCC; text-align:center; cursor: pointer; cursor: hand; margin-bottom:20px; } </style> <script src="jquery-1.10.2.min.js"></script> <script> $(document).ready(function() { $("h3").click(function(){ alert($("p").attr("align")); }); }); </script> </head> <body> <h3>Click to get align attribute value</h3> <p align="center">jQuery is a fast, small and feature-rich <b>JavaScript</b> library.</p> </body> </html>Output :
Click to get align attribute value
jQuery is a fast, small and feature-rich JavaScript library.