Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

AttributeHas(attribute) matches elements that have the specified attribute

< html>   <head>     <script type="text/javascript" src="js/jquery-1.3.2.js"></script>     <script type="text/javascript">         $(document).ready(function(){             $("div[id]").one("click", function(){               var idString = $(this).text() + " = " + $(this).attr("id");               $(this).text(idString);             });         });     </script>   </head>   <body>     <body>       <div>no id</div>       <div id="hey">with id</div>     </body> </html>