I\'ve created a form that is used to review a person on a website, however when the form is submitted nothing happens and console is showing a \'Maximum Call Stack Exceeded\
Replace $('#fReviewMe').submit(); with:
$('#fReviewMe').submit();
$('#fReviewMe')[0].submit();
calling DOM node method submit to avoid submit jQuery handler 'loop'.
submit