I have a single input outside the form
<input id="BrId" name="BrId" type="text" value="1">
HTML Form-
 <form id="photoform" enctype="multipart/form-data" method="post" action="server-side-path">
    <input type="file" id="Photos" name="photo"/>
    <input type="hidden" name="VisitGuid" value="5" />
    <input type="hidden" name="HiddenBrId" id="HiddenBrId" value="" />
    <input type="submit" />
JQuery-
$('#photoform').on('submit', function (e) { 
     e.preventDefault();
     $('#HiddenBrId').val($('#BrId').val());
     $('#photoform').submit();
});
When I click on submit button, form is not being submitted and console says Uncaught RangeError: Maximum call stack size exceeded
Any help?
 
     
    