this pointer : this « jQuery « JavaScript DHTML






this pointer

 <html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ var str = $(this).text(); alert(str) }); </script> </head> <body> <table> <tr><td>A</td></tr> <tr><td>B</td></tr> <tr><td>C</td></tr> <tr><td>D</td></tr> </table> </body> </html> 








Related examples in the same category

1.Use this to reference document
2.Use jQuery object instead of the regular DOM element, use the $(this) function
close