I have a form with many combo's on. Problem being the mousewheel chages value on scroll. I found and inserted a working piece of code which takes care of the mouse, however if a combo has focus, the up/down keys change the value. Is there anything I can add to disable them while on this page? Many thanks
<script type="text/javascript">
function stop()
{
return false;
}
document.onmousewheel=stop;
</script>
<script type="text/javascript">
function stop()
{
return false;
}
document.onmousewheel=stop;
</script>