InterviewSolution
Saved Bookmarks
| 1. |
What Is Difference Between $(this) And 'this' In Jquery? |
Answer» $(document).ready(FUNCTION(){
$(‘#clickme’).CLICK(function(){
alert($(this).text());
alert(this.innerText);
});
});
Refer the following example |
|