Guest User

Untitled

a guest
Jul 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <html>
  2. <body>
  3. <script type="text/javascript">
  4. function menuon()
  5. {
  6. document.getElementById("menu").style.visibility="visible";
  7. }
  8. function menuoff()
  9. {
  10. document.getElementById("menu").style.visibility="hidden";
  11. }
  12. </script>
  13. <span onmouseover="menuon();">
  14. menu
  15. </span>
  16. <div id="menu" name="menu" onmouseout="menuoff();" style="background-color:rgb(0,255,0); position:absolute; top:200px; left:100px;width:200px; height:100px; z-index:30;visibility:hidden;">
  17. SubMenu
  18. </div>
  19. </body>
  20. </html>
Add Comment
Please, Sign In to add comment