I have a script like this:
var target = $('#box1, #box2, #box3, #boxn').find('.content p');
target.hover(function() {
alert([the base element]);
})
I need to get the base element #box1
or #box2
or #box3
etc that contains the element that has the mouse over itself.
Is there a way to do this?