
I don't get it... To stop the select scroll onmousewheel I need something like (obviously is aufully worng below)???:
<html>
<head>
<script>
document.getElementsByTagName('select')[0].onmousewheel = function(e){
e=e||window.event;
return false
}
</script>
</head>
<body>
<select>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</body>
</html>
(I need it this way, as I have many select objects on page (I'll build an increment for that, but till than I have to understand the method fo a single one...
??