$(document).ready(function() {

	$('.noEnterSubmit').keypress(function(e){
	    if ( e.which == 13 ) return false;
	});

});

