bopritchard
Programmer
i've assigned 2 mouseover events to an object...but 1 of them is not firing...shouldn't i be able to do this?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
function MM_popupMsg(msg) { //v1.0
alert(msg);
}
//-->
</script>
</head>
<body>
<a href="#" onClick="MM_goToURL('parent','test.html');return document.MM_returnValue" onMouseOver="MM_popupMsg('msg here\r')">link</a>
</body>
</html>