up vote 0 down vote favorite
1
share [g+] share [fb]

My goal is to change the "onclick" attribute of a link. I can do it successfully, but the resulting link doesn't work in ie8. It does work in ff3.

For example, this works in firefox3, but not ie8. Why???

<p><a id="bar" href="#" onclick="temp()">click me</a></p>

    <script>

    doit = function(){
        alert('hello world!');
    }
    foo = document.getElementById("bar");
    foo.setAttribute("onclick","javascript:doit();");

    </script>
link|improve this question

78% accept rate
1  
What is the line "javascript: alert('hello world');" all about? – Hugoware Jun 19 '09 at 17:28
what's the idea in not defining the "type" attribute of the script tag and use javascript as a class declaration or something like this? – backslash17 Jun 19 '09 at 17:34
let me fix that... – edt Jun 19 '09 at 18:11
feedback

2 Answers

up vote 3 down vote accepted

You don't need to use setAttribute for that - This code works (IE8 also)

<div id="something" >Hello</div>
<script type="text/javascript" >
    (function() {
        document.getElementById("something").onclick = function() { 
            alert('hello'); 
        };
    })();
</script>
link|improve this answer
why put that in a closure? no reason for it that I can see. – Jonathan Fingland Jun 19 '09 at 17:27
Why write a separate function for alert('hello world')? :) -- It depends on what you're doing, a closure would be better IMO if you don't plan on calling it from other places. – Hugoware Jun 19 '09 at 17:29
in that case, no need for the function or closure. just document.getElementById("something").onclick = function() { alert('hello'); }; without any of the rest of it – Jonathan Fingland Jun 19 '09 at 17:32
Oh, you mean the self-executing function? There was no reason for it - I just wrote it that way so it would execute on start up. – Hugoware Jun 19 '09 at 17:38
Works perfect. Thanks! – edt Jun 19 '09 at 18:12
feedback

your best bet is to use a javascript framework like jquery or prototype, but, failing that, you should use:

if (foo.addEventListener) 
    foo.addEventListener('click',doit,false); //everything else    
else if (foo.attachEvent)
    foo.attachEvent('onclick',doit);  //IE only

edit:

also, your function is a little off. it should be

var doit = function(){
    alert('hello world!');
}
link|improve this answer
That works, but I'm trying to override an onclick event where the onclick attribute & value are added to the anchor tag. I don't have access to changing the anchor tag, so I need to do it with JavaScirpt. – edt Jun 19 '09 at 18:10
addEventListener and attachEvent are much better ways of adding events to DOM elements (including anchor tags). they are unobtrusive methods for adding an arbitrary number of events to elements, the onclick property, by contrast, only allows one event and is far more error prone (for example other scripts changing the property) – Jonathan Fingland Jun 20 '09 at 3:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.