Forum Moderators: open
function mouseOut8( ) {
$('.bar8')
.removeClass("barover");
}
I would like to change this so that the class is removed from the item I have just moused out of instead of specifying the exact item. This is so I can use this function for multiple items. I tried replacing the '.bar8' with 'this' but it didn't work.
Thanks.