addEventListener or attachEvent : General Event « Event « JavaScript DHTML






addEventListener or attachEvent

  



<html>
<head>
<title>Options</title>
<script type="text/javascript">
function openwin(e) {
    if (typeof window.open != "undefined") {
        var opened = window.open("http://www.google.com","","width=240,height=480");
        if (typeof e.preventDefault != "undefined") {
            e.preventDefault();
            e.stopPropagation();
        }
        e.cancelBubble = true;
        return false;
    } else {
        return true;
    }
}
</script>
</head>
<body>
<a href="#" id="my">Go?</a>
<script type = "text/javascript">
var mslink = document.getElementById("my");
if (window.addEventListener) {
    mslink.addEventListener("click",openwin,false);
} else {
    mslink.attachEvent("onclick",openwin);
}
</script>
</body>
</html>

   
    
  








Related examples in the same category

1.Event type occured
2.An Example of Changing Event Handlers
3.JavaScript Event Handlers
4.Emulating Events
5.Setting Event Handlers from within JavaScript
6.Event filer: number Only, upper case
7.Get Positioned Event Coordinate
8.Add event listener to anchor link
9.Calling a Function from an Event Handler
10.Event Handlers and this
11.Event Bubbling (Firefox)
12.Capturing events
13.Bubble up events (Firefox)
14.Inline DOM Event Registration
15.Event Bubbling Demonstration
16.W3C Event Capture and Bubble
17.Add event handler to form
18.Preventing Bubble and Capture