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.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
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>