fridemar's comments
var btn = document.getElementById("mybtn");
btn.old_onclick = btn.onclick;
btn.onclick = function() {
this.old_onclick.apply(this,arguments);
alert("goodbye");
}
Other comments
There are no comments on this mark.
Similar Marks


