Select by ID : Selector ID « jQuery « JavaScript DHTML






Select by ID

     
<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>
      Click to see.
      <div>div</div>
      <div id="hey">div</div>
  </body>
</html>

   
    
    
    
    
  








Related examples in the same category

1.ID index selector
2.ID selector
3.ID selector only
4.Assign value to DIV with ID
5.Reference by tag name and id
6.Removes the element with the ID "selected" from the set of all paragraphs.
7.Finds the element with the id "myDiv".
8.Finds the element with the id "myID.entry[1]".