I am working on dropdown menu in ASP.NET.
On mouse over I like to change back color of that particular Menu.
I really appreciate if you provide me line of code.
Dropdown Menu in ASP.NET
Ask by John Smith
Updated 23 May 2018
hi,
You can also check following link:
https://stackoverflow.com/questions/9918184/simplest-way-to-create-drop-down-menu-on-a-web-page
You can change back color of dropdown menu by setting it hover property back color.
<script> function colorChange(obj) { obj.style.backgroundColor="red"; } </script>