I want to hover 3 item at a time. when i will put cursor one of them. It should hover other two item. please can help me anyone. i want to do this with javascript. I have make
use a mapping javascript object.
and use class 'like' selector to bind functions to elements which have class starting with ".box"
eg :
$(document).ready(function(){ var mapping = { 'box1':'box4','box4':'box1' }; $("[class^=box]").mouseover(function(){ ......... });