Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ran into this problem today, posting in case someone else has the same issue.

var execBtn = document.createElement('input');
execBtn.setAttribute("type", "button");
execBtn.setAttribute("id", "execBtn");
execBtn.setAttribute("value", "Execute");
execBtn.setAttribute("onclick", "runCommand();");

Turns out to get IE to run an onclick on a dynamically generated element, we can't use setAttribute. Instead, we need to set the onclick property on the object with an anonymous function wrapping the code we want to run.

execBtn.onclick = function() { runCommand() };

BAD IDEAS:

You can do

execBtn.setAttribute("onclick", function() { runCommand() });

but it will break in IE in non-standards mode according to @scunliffe.

You can't do this at all

execBtn.setAttribute("onclick", runCommand() );

because it executes immediately, and sets the result of runCommand() to be the onClick attribute value, nor can you do

execBtn.setAttribute("onclick", runCommand);
share|improve this question
1  
Using HTML attributes as event handlers is a no-no. Do it like this: execBtn.onclick = runCommand; – Josh Stodola Jul 1 '09 at 17:30

16 Answers

to make this work in both FF and IE you must write both ways:


    button_element.setAttribute('onclick','doSomething();'); // for FF
    button_element.onclick = function() {doSomething();}; // for IE

thanks to this post.

UPDATE: This is to demonstrate that sometimes it is necessary to use setAttribute! This method works if you need to take the original onclick attribute from the HTML and add it to the onclick event, so that it doesn't get overridden:

// get old onclick attribute
var onclick = button_element.getAttribute("onclick");  

// if onclick is not a function, it's not IE7, so use setAttribute
if(typeof(onclick) != "function") { 
    button_element.setAttribute('onclick','doSomething();' + onclick); // for FF,IE8,Chrome

// if onclick is a function, use the IE7 method and call onclick() in the anonymous function
} else {
    button_element.onclick = function() { 
        doSomething();
        onclick();
    }; // for IE7
}
share|improve this answer
Short response and it worked great. Thanks for sharing. – Nip Apr 29 '10 at 19:25
2  
button_element.onclick = function().. works in both IE and Firefox. For that matter it also works in Opera, Safari and Chrome. Any reason why setAttribute is needed (for Firefox)? – slebetman Jun 10 '10 at 6:38
2  
The onclick way works fine in FF as well as IE. There is no reason ever to use the setAttribute version. – bobince Jul 11 '10 at 1:04
@bobince - I updated this answer to demonstrate that there are cases where you need to use setAttribute. In IE8+, FF, Chrome, getAttribute("onclick") returns a string, whereas in IE7 that string is wrapped in a function and must be called using onclick(); – jmort253 Apr 8 '11 at 0:39
2  
But what's the advantage of getAttribute/setAttribute there at all? Using the .onclick property instead of both get and set works in all browsers, and doesn't introduce troublesome scope differences. – bobince Apr 9 '11 at 8:24

There is a LARGE collection of attributes you can't set in IE using .setAttribute() which includes every inline event handler.

See here for details:

http://webbugtrack.blogspot.com/2007/08/bug-242-setattribute-doesnt-always-work.html

share|improve this answer

Or you could use jQuery and avoid all those issues:

var execBtn = $("<input>", {
       type: "button",
       id: "execBtn",
       value: "Execute"
    })
    .click(runCommand);        

jQuery will take care of all the cross-browser issues as well.

share|improve this answer

works great!

using both ways seem to be unnecessary now:

execBtn.onclick = function() { runCommand() };

apparently works in every current browser.

tested in current Firefox, IE, Safari, Opera, Chrome on Windows; Firefox and Epiphany on Ubuntu; not tested on Mac or mobile systems.

  • Craig: I'd try "document.getElementById(ID).type='password';
  • Has anyone checked the "AddEventListener" approach with different engines?
share|improve this answer

This is an amazing function for cross-browser compatible event binding.

Got it from http://js.isite.net.au/snippets/addevent

With it you can just do Events.addEvent(element, event, function); and be worry free!

For example: (http://jsfiddle.net/Zxeka/)

function hello() {
    alert('Hello');
}

var button = document.createElement('input');
button.value = "Hello";
button.type = "button";

Events.addEvent(input_0, "click", hello);

document.body.appendChild(button);

Here's the function:

// We create a function which is called immediately,
// returning the actual function object.  This allows us to
// work in a separate scope and only return the functions
// we require.
var Events = (function() {

  // For DOM2-compliant browsers.
  function addEventW3C(el, ev, f) {
    // Since IE only supports bubbling, for
    // compatibility we can't use capturing here.
    return el.addEventListener(ev, f, false);
  }

  function removeEventW3C(el, ev, f) {
    el.removeEventListener(ev, f, false);
  }

  // The function as required by IE.
  function addEventIE(el, ev, f) {
    // This is to work around a bug in IE whereby the
    // current element doesn't get passed as context.
    // We pass it via closure instead and set it as the
    // context using call().
    // This needs to be stored for removeEvent().
    // We also store the original wrapped function as a
    // property, _w.
    ((el._evts = el._evts || [])[el._evts.length]
        = function(e) { return f.call(el, e); })._w = f;

    // We prepend "on" to the event name.
    return el.attachEvent("on" + ev,
        el._evts[el._evts.length - 1]);
  }

  function removeEventIE(el, ev, f) {
    for (var evts = el._evts || [], i = evts.length; i--; )
      if (evts[i]._w === f)
        el.detachEvent("on" + ev, evts.splice(i, 1)[0]);
  }

  // A handler to call all events we've registered
  // on an element for legacy browsers.
  function addEventLegacyHandler(e) {
    var evts = this._evts[e.type];
    for (var i = 0; i < evts.length; ++i)
      if (!evts[i].call(this, e || event))
        return false;
  }

  // For older browsers.  We basically reimplement
  // attachEvent().
  function addEventLegacy(el, ev, f) {
    if (!el._evts)
      el._evts = {};

    if (!el._evts[ev])
      el._evts[ev] = [];

    el._evts[ev].push(f);

    return true;
  }

  function removeEventLegacy(el, ev, f) {
    // Loop through the handlers for this event type
    // and remove them if they match f.
    for (var evts = el._evts[ev] || [], i = evts.length; i--; )
      if (evts[i] === f)
        evts.splice(i, 1);
  }

  // Select the appropriate functions based on what's
  // available on the window object and return them.
  return window.addEventListener
      ? {addEvent: addEventW3C, removeEvent: removeEventW3C}
      : window.attachEvent
          ? {addEvent: addEventIE, removeEvent: removeEventIE}
          : {addEvent: addEventLegacy, removeEvent: removeEventLegacy};
})();

If you don't want to use such a big function, this should work for almost all browsers, including IE:

if (el.addEventListener) { 
    el.addEventListener('click', function, false); 
} else if (el.attachEvent) { 
    el.attachEvent('onclick', function); 
} 

In response to Craig's question. You're going to have to make a new element and copy over the attributes of the old element. This function should do the job: (source)

function changeInputType(oldObject, oType) {
  var newObject = document.createElement('input');
  newObject.type = oType;
  if(oldObject.size) newObject.size = oldObject.size;
  if(oldObject.value) newObject.value = oldObject.value;
  if(oldObject.name) newObject.name = oldObject.name;
  if(oldObject.id) newObject.id = oldObject.id;
  if(oldObject.className) newObject.className = oldObject.className;
  oldObject.parentNode.replaceChild(newObject,oldObject);
  return newObject;
}
share|improve this answer

Did you try:

    execBtn.setAttribute("onclick", function() { runCommand() });
share|improve this answer
that "shouldn't" work in IE6 / IE7 or IE8 in non-standards mode. For IE, you need to use: execBtn.onclick = function(){...} – scunliffe Sep 19 '08 at 2:26

Write the function inline, and the interpreter is smart enough to know you're writing a function. Do it like this, and it assumes it's just a string (which it technically is).

share|improve this answer
Can you add a code example of what you mean? Isn't this one of the 'bad ideas' above? – Peter Hilton Sep 29 '08 at 16:52

Not relevant to the onclick issue, but also related:

For html attributes whose name collide with javascript reserved words, an alternate name is chosen, eg. <div class=''>, but div.className, or <label for='...'>, but label.htmlFor.

In reasonable browsers, this doesn't affect setAttribute. So in gecko and webkit you'd call div.setAttribute('class', 'foo'), but in IE you have to use the javascript property name instead, so div.setAttribute('className', 'foo').

share|improve this answer

I am using a single 'popup' in a page, and I use that for several controls to save bandwidth. (Stats: ASP.NET with ASP.NET AJAX) The panel is the same for each control, with the one exception of the postback info-- clicking a LinkButton in the shared panel should click a hidden, usercontrol-specific LinkButton elsewhere on the page.

When the user control is rolled over, I wanted to set the links in the shared panel to do the same postback as the links in the user control. This way, the correct item the link was clicked for can be captured in the page postback.

I was thinking in traditional terms when searching for my answer to: How do I register one LinkButton to click another?

I was trying to do the suggestions here, and the makeEvent() code was really great. This worked among all of my IE 8 tests, including IE 7 and quirks mode. It did not work in Firefox, Safari, or Chrome.

However, for those of temporarily confused by ASP.NET's references to things, a LinkButton is rendered as a link () with the href attribute set to do the postback, and only IE supports the 'onclick' event of an html link.

Instead of making a dynamic event listener for 'onclick,' I copied the href value. This works across all versions and modes of IE (7+), Firefox, Safari, and Chrome. (On Windows, anyway.)

Added as a reference for others who may be in the same mindset, and stumped as to why Internet Explorer supports onclick for links and Firefox does not.

share|improve this answer

button_element.onclick = function() {doSomething();}; works on both IE (7.0) and FireFox (3.0) for me.. :-) Thanks!

share|improve this answer

Have you considered an event listener rather than setting the attribute? Among other things, it lets you pass parameters, which was a problem I ran into when trying to do this. You still have to do it twice for IE and Mozilla:

function makeEvent(element, callback, param, event) {
    function local() {
    	return callback(param);
    }

    if (element.addEventListener) {
    	//Mozilla
    	element.addEventListener(event,local,false);
    } else if (element.attachEvent) {
    	//IE
    	element.attachEvent("on"+event,local);
    }
}

makeEvent(execBtn, alert, "hey buddy, what's up?", "click");

Just let event be a name like "click" or "mouseover".

share|improve this answer

I did this to get around it and move on, in my case I'm not using an 'input' element, instead I use an image, when I tried setting the "onclick" attribute for this image I experienced the same problem, so I tried wrapping the image with an "a" element and making the reference point to the function like this.

var rowIndex = 1;
var linkDeleter = document.createElement('a');
linkDeleter.setAttribute('href', "javascript:function(" + rowIndex + ");");

var imgDeleter = document.createElement('img');
imgDeleter.setAttribute('alt', "Delete");
imgDeleter.setAttribute('src', "Imagenes/DeleteHS.png");
imgDeleter.setAttribute('border', "0");

linkDeleter.appendChild(imgDeleter);
share|improve this answer

In some cases the examples listed here didn't work out for me in Internet Explorer.

Since you have to set the property with a method like this (without brackets)

HtmlElement.onclick = myMethod;

it won't work if you have to pass an object-name or even parameters. For the Internet Explorer you should create a new object in runtime:

HtmlElement.onclick = new Function('myMethod(' + someParameter + ')');

Works also on other browsers.

share|improve this answer
2  
This is a terrible way to pass parameters. It won't work for anything but the basic datatypes, and even then you need JSON-style escaping to turn them into literals. Always use an inline function expression (onclick= function() { myMethod(someParameter); }) instead of new Function(). – bobince Jul 11 '10 at 1:06

I'm having a similar issue but I'm trying to SET the attribute. I need to change a textbox into a password text box. Works fine in FF etc. but not IE. It falls over when the following function is called:-

function clearPasswordBox(ID) {
clearTextBox(ID);
if(document.getElementById(ID).getAttribute('type')=='text' {
document.getElementById(ID).setAttribute('type','password');
}
document.getElementById(ID).focus();
}

Is there an IE work around?

share|improve this answer
Take a look at the bottom of my answer. To be compatible with IE you're going to have to make a new element and copy over the attributes. I found a nice function to do just that. – Acorn Jun 10 '10 at 6:10
function CheckBrowser(){
    if(navigator.userAgent.match(/Android/i)!=null||
        navigator.userAgent.match(/BlackBerry/i)!=null||
        navigator.userAgent.match(/iPhone|iPad|iPod/i)!=null||
        navigator.userAgent.match(/Nokia/i)!=null||
        navigator.userAgent.match(/Opera M/i)!=null||
        navigator.userAgent.match(/Chrome/i)!=null)
        {
            return 'OTHER';
    }else{
            return 'IE';
    }
}


function AddButt(i){
    var new_butt = document.createElement('input');
    new_butt.setAttribute('type','button');
    new_butt.setAttribute('value','Delete Item');
    new_butt.setAttribute('id', 'answer_del_'+i);
    if(CheckBrowser()=='IE'){
        new_butt.setAttribute("onclick", function() { DelElemAnswer(i) });
    }else{
        new_butt.setAttribute('onclick','javascript:DelElemAnswer('+i+');');
    }
}
share|improve this answer

Try this execBtn.onclick =function() { eval('runCommand()') };

For me it works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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