
May 4th, 2004, 11:34 AM
|
|
Registered User
|
|
Join Date: May 2004
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
How to add an event to iframe
Hi, i´m trying to add an event to iframe, i want to remove the iframe contextual menu and add my on one, i´m trying doing this:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script>
function init() {
document.getElementById('iframe').contentWindow.do cument.designMode = "on";;
}
</script>
</head>
<body onLoad="init();">
<iframe id="iframe"></iframe>
<script>
var el = document.getElementById('iframe');
if(document.all) {
el.attachEvent("oncontextmenu", show);
} else {
el.addEventListener("contextmenu", show, true);
}
function show() {
alert("Mi menu");
return false;
}
</script>
</body>
</html>
What can i do?
Thx :-)
|