In our app, we recently adopted an improved GUI style. Originally, our form submit links were similar to the following:
<input type=submit class="some-style" name="Command" value="Save" />
However, we're trying to use the following instead:
<input id='hiddenSaver' type="hidden" name="Command" value="Save" />
<a id='saveButton' href="#" class="some-style"><i class="some-icon"></i> Save</a>
<!-- SNIP: Extraneous other stuff -->
<script>
var $saveButton = $('saveButton'),
$hiddenSaver = $('hiddenSaver');
$(document).ready(function () {
$saveButton.click(function () {
$saveButton.preventDefault();
$hiddenSaver.submit();
});
});
</script>
Yet our forms do not submit...in fact, they just don't do anything. What are we missing?

.submit()on form not button – Peter Feb 1 at 17:38<button type="submit">. – Juhana Feb 1 at 18:14<a href>is certainly a viable strategy, the situation my team is in is more suited for using<button>instead. – Andrew Gray Feb 1 at 19:26