This script I have on my site is causing some unexpected error: Uncaught ReferenceError: $ is not defined
it should rewrite function of enter to act as a tab within the inputs on site form instead of submitting that form.
<script type="text/javascript">
$('input').keypress(function(e) {
if (e.which == 13) {
<--! says error is here within the $ symbol -->
$(this).next('input').focus();
e.preventDefault();
}
});
</script>