Get attribute value

Description

The following code shows how to get attribute value.

Example


<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {<!--from   w  ww  . ja  va2s . c o  m-->
    $("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>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities