You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
408B

  1. window.onload = function()
  2. {
  3. var diag_menu_vars = document.querySelectorAll('div.diag_menu p');
  4. for (var i in diag_menu_vars)
  5. {
  6. diag_menu_vars[i].onmouseover = function()
  7. {
  8. document.getElementById("div_"+this.id).style.display='inline-block';
  9. };
  10. diag_menu_vars[i].onmouseout = function()
  11. {
  12. document.getElementById("div_"+this.id).style.display='none';
  13. };
  14. }
  15. };