How can I find the elementId from a mouseover event?
Hi
I have an arbitrary number of divs of class 'product'.
I can use jQuery to do something when mouseover occurs on the class type .product. e.g:
-
$('.product').mouseover(function(){
});
I need to be able to get the elementId of the item that triggered the mouseover event... and I have been unsuccessful in figuring it out so far.
I can't really test mouseover via elementId because the number of items can change, and is completely dynamic.
I would greatly appreciate any suggestions on how to go about getting the elementId.
Many thanks.