|
|
#1 |
|
Silver Member
![]() Join Date: Aug 2011
Posts: 187
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Simple Event Example</title> <script type="text/javascript"> function addEventHandler(oNode, sEvt, fFunc, bCaptures){ if (typeof(window.event) != "undefined") { oNode.attachEvent("on" + sEvt, fFunc); }else{ oNode.addEventListener(sEvt, fFunc, bCaptures); } } function onLinkClicked(e) { alert("You clicked the link"); } function setUpClickHandler() { addEventHandler(document.getElementById('clickLink '), "click", onLinkClicked, false); } addEventHandler(window,"load", setUpClickHandler, false); </script> </head> <body> <a href="#" title="click me" id="clickLink">Click Me!</a> </body> </html> I got this out of a tutorial. This works fine in FIREFOX. In CHROME and INTERNET EXPLORER 9 this doesn't work. Please help me find the fix. |
|
|
|
|
|
#2 | ||
|
New Member
![]() Join Date: Jan 2012
Location: California
Posts: 5
|
Replace:
Quote:
Quote:
__________________
Explicit Arts .NET - Superior Web Hosting and Multimedia Solutions * 4,500 FREE Premium Templates included with ALL hosting packages
|
||
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|