is there any onmousescroll / onmouserollover event exist in javascript / asp.net on picklist or select control. I want to implement/attach this event on the picllist of CRM lead form’s onload. I will do that. But want to know is any such kind of event exist or not?
is there any onmousescroll / onmouserollover event exist in javascript / asp.net on picklist
Share
onmousewheelandDOMMouseScrollare events fired for the mouse wheel.onscrollis better if you want to catch scrolling, however, and it has better support. Not sure how it will work with select elements though.http://www.quirksmode.org/dom/events/scroll.html
onmouserollover sounds like you probably want
onmouseenter, but unfortunately it’s IE only. Your options are to try and simulate it usingonmouseover, or use a library/framework that does it for you. jQuery’shover()provides equivalent functionality.