I'm analyzing a plugin as I want to modify it. I see various events firing functions like this:
document.getElementById(this.config.form).addEventListener("submit", this._submit, false);
My question is - what does false on the end actually do? Is it the same as adding return = false on the end of a function? If so, what is the purpose of adding this?
useCaptureit would have been easy.