Sorry if this seems redundant. I have read through quite a few posts and cannot seem to figure out how to accomplish this. I need an element that behaves like a button but I thought to use a css class object instead. I have found a number of references showing how to do this by making href="#"
and adding javascript command.
<p><input name="Test" type="Button" value="Click" /></p>
However, due to the server side software I am using I need to exactly duplicate the behavior of the button in order to make it submit my form.
I am guessing it is something obvious like:
<p><a class="button" href="#" onclick="submit()">Click</a></p>
Thanks for any help you can provide!