var tr = document.createElement('tr');
tr.setAttribute("onclick",p.onrowclick+"("+row.id+")");

Hi, the above works fine for me in Firefox. I can't find the correct syntax for a workaround in IE.

I'm using IE8.

link|improve this question

78% accept rate
Did you consider using a JavaScript library? – Šime Vidas Oct 18 '10 at 11:08
The above code is what I used with a jQuery extension called Flexigrid so that I could add an onclick event to the tr. I just threw that code in without regard to jQuery or an 'easier approach'. I thought that if it wasn't working with the above code I'd have the same problem with any other way of assigning an onclick to a tr in IE. – StuR Oct 20 '10 at 8:56
feedback

1 Answer

up vote 3 down vote accepted

Don't set events like this. Pass it a proper function:

tr.onclick = function() { p.onrowclick(...); }  
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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