i have 50 divs(bleu), when roll over on one of them i need to load an image to the rose div.
so how could i define a specific image to each of bleu divs?
___
".bcode_Gal" is also "#g_00, #g_01, #g_02, #g_03...#g_50"
"#gal_00" is the "rose" div on the attached image where im loading images.
- $(".bcode_Gal").mouseenter(mouse_on_gal);
- $(".bcode_Gal").mouseleave(mouse_off_gal);
- function mouse_on_gal()
- {
- $("#gal_00").show();
- $("#gal_00").html("<img src='content/gal/00 (1).jpg'>");
- }
- function mouse_off_gal()
- {
- $("#gal_00").hide();
- }