I'm using this jquery code in a page with a list of products for displaying two links when the user hover an item. The problem is all the products have the same class ".prod_box" and if I hover one item the script target all the div-s with the same class. Is it possible for the script to target only the item I'm hovering, not all the items that have the same class? Without giving each product a diferent class.
$('.prod_box').mouseover(function () {
$('.div_overlay').show();
}).mouseout(function () {
$('.div_overlay').hide();
});