First time using Asp.net-mvc and originally followed the NerdDinner tutorial. My form submit button looks like this:
<p>
<input type="submit" value="Save" />
</p>
I've now added another button to the page with jQuery code attached. It works in IE, but when I test in FireFox the form submits. I tried adding another button, this time with no attached jQuery code and the same thing happens. When the button is clicked, the form submits.
<button id="random-button">Do Nothing</button>
??