Hallo,
ich habe folgenden Code mit Jquery gebastelt:
$(document).ready(function(){
$("ul#nav > *").mouseover(function () {
$('select').css("display","none");
});
$("ul#nav > *").mouseout(function () {
$('select').css("display","inline");
});
})
Damit will ich sobald die Navi gehovert wird, die Select-Boxen ausblenden.
Nun will ich aber nur alle Boxen innerhalb von bspw. 250px ausblenden.
wie mache ich das?
Danke, vg kcd