Javascript native equivalent for jQuery event.preventDefault
javascript, jquery
Solution
`preventDefault` is a DOM method. See the W3C specification here.
Problem
Possible Duplicate: event.preventDefault() vs. return false I'm not sure, but as far as I see, `event.preventDefault` is coming from `jQuery`. if yes, I'm wondering is there any native equivalent in Javascript doing the same?