I'm trying to find if any of the tags inside a page contain a js event attribute, such as onload, onunload, onfocus etc, ... To do so I have an array of events to check for (I think I have them all):
var attr = [
"onLoad",
"onunload",
"onclick",
"ondblclick",
"onmousedown",
"onmouseup",
"onmouseover",
"onmousemove",
"onmouseout",
"onfocus",
"onblur",
"onkeypress",
"onkeydown",
"onkeyup",
"onsubmit",
"onreset",
"onselect",
"onchange"];
and then I get all the elementsByTagName and want to check for their attribute:
var getAttrs = function() {
var i = 0,
j,
all = document.getElementsByTagName('*'),
max = all.length,
eventsLen = attr.length;
for (; i < max; i++) {
console.log('iterating through objects');
for (j = 0; j < eventsLen; j++) {
if (all[i].hasAttribute(attr[j])) {
console.log('found an instance of an intrinsec event', attr[j]);
}
}
}
};
This isn't working and I'm not getting any of the attributes I wanted to find.
Additionally, I'd like to find all attributes within all tags that use javascript: (such as in <a href="javascript:void(0)">) Any idea how I could add that to the function's logic?
Thanks!