onclick return element
by jessekinsman
HTML
<a href="#" onclick="return test(this);"> test </a>
JavaScript
function test(elem) {
//event.target.removeAttribute("onclick");
console.log(elem);
elem.removeAttribute("onclick");
}
by jessekinsman
<a href="#" onclick="return test(this);"> test </a>
function test(elem) {
//event.target.removeAttribute("onclick");
console.log(elem);
elem.removeAttribute("onclick");
}