exhtml
12/1/2017 - 9:17 AM

Prevent form submitting when hit 'enter'

$(document).on('keypress', '#formPF input[type=text]', function(e) { //live binding for new attached elements
    if (e.keyCode === 13) { 
        e.preventDefault();
    }
});