Using javascript - How do I find an element in a group of elements that share the same className that does not have a specific event attached to it.
var items = document.getElementsByClassName("myInputs");
How do I query the result - items
to find out which of these elements do not have a keypressed
event attached to them ?