I think it may be better to do this on the submit of the form. Browsers do the whole "enter" thing for you so you don't have to worry about it.
Add id to the tag, and change the type from button to submit:
Update you Javascript:
$('#myForm').submit(function() {
SendData();
});
Here is the JSFiddle