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.
29 lines
1012 B
29 lines
1012 B
2 years ago
|
<html>
|
||
|
<head>
|
||
|
<script language="JavaScript" type="text/javascript">
|
||
|
// Dojo configuration
|
||
|
djConfig = {
|
||
|
parseWidgets: false,
|
||
|
isDebug: true
|
||
|
};
|
||
|
</script>
|
||
|
<script language="JavaScript" type="text/javascript" src="../../dojo.js"></script>
|
||
|
<script language="JavaScript" type="text/javascript">
|
||
|
dojo.require("dojo.html");
|
||
|
|
||
|
function over(e) {
|
||
|
var t = dojo.html.getEventTarget(e);
|
||
|
dojo.debug(t ? "mouseover tag = [" + t.tagName + "]" : "bad target");
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>Check your javascript log; the scripts were all loaded in the head.</p>
|
||
|
<!-- comment node -->
|
||
|
<div onMouseOver="over(event)">
|
||
|
Creamy takes <span onMouseOver="over(event)"><!--comment--><em>chocolatey</em> however more snappy</span>, can't calories families, permanent crispy big exclusive aromatic. Stimulates convenient, dual can't exclusive limited unique space supreme incredible drink double, <b>spectacular</b> more escape.
|
||
|
</div>
|
||
|
<!-- comment node -->
|
||
|
</body>
|
||
|
</html>
|