extract object ID from a Javascript object - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:text

Description

extract object ID from a Javascript object

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-1.6.4.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){//from  w ww .  j a va2s  . c om
$test = $('div#test');
$test.text($test.attr('id'));
    });

      </script> 
   </head> 
   <body> 
      <div id="test"></div>  
   </body>
</html>

Related Tutorials