can someone help me out to solve a query what's the difference between #1 and #2 note that there is extra [0] in #2 after $(this)
#1 code
$('#a').mouseover(function() {
$("#a").trigger("click");
});
#2 code
$('#a').mouseover(function() {
$("#a")[0].trigger("click");
});