jQuery Tutorial plus Question:
Download Questions PDF

Explain the difference between $(this) and 'this' in jQuery?

jQuery Interview Question
jQuery Interview Question

Answer:

Refer the following example:
$(document).ready(function(){
$('#clickme').click(function(){
alert($(this).text());
alert(this.innerText);
});
});

★ this and $(this) references the same element but the difference is that "this" is used in traditional way but when "this" is used with $() then it becomes a jQuery object on which we can use the functions of jQuery.

★ In the example given, when only "this" keyword is used then we can use the jQuery text() function to get the text of the element, because it is not jQuery object. Once the "this" keyword is wrapped in $() then we can use the jQuery function text() to get the text of the element.

Download jQuery Interview Questions And Answers PDF

Previous QuestionNext Question
Define slideToggle() effect?How to read, write and delete cookies in jQuery?