Hyperlinks can submit forms, which is likely what you're seeking. This code will allow your link to have a default behavior, when scripting is disabled:
<a href="enable-scripts.html" class="formSubmit">Submit Data</a>
$("a.formSubmit").click(function(event){
event.preventDefault();
$("#myForm").submit();
});
You could also take your solution entirely into jQuery (javascript) without changing your HTML:
If scripting is enabled, the user will see a link. If not, they'll see a button.
$(document).ready(function(){
var myLink = $("<a>Submit</a>").attr("href", "#").click(function(event){
event.preventDefault();
$("#myForm").submit();
});
$("#myForm input[type='submit']").replaceWith(myLink);
});