Tagged Questions

2
votes
4answers
726 views

onclick setAttribute href from a src

I'm working on a project to swap thumbnail images to a larger image when the thumbnail is selected and it's working ok however, I would now like the end users to be able to click on the larger image ...
2
votes
3answers
3k views

HTML changes with element.setAttribute(“onclick”,“alert('Test');”) and element.onclick = “alert('Test');”;

I got surprised when comparing the following cases: button = document.getElementById("addSugerenciaButton"); if (button != null) { button.onclick = "post_to_url('" + addSugerenciaURL + "', ...
0
votes
1answer
619 views

Internet Explorer “setAttribute” onclick workaround?

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. ...
0
votes
2answers
6k views

How to Set OnClick attribute with value containing function in ie8?

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. ...