I’ve added the following code to an order form. When I add an address the form goes into a state of loading and never stops. Here’s the code and a short video showing what happens.
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('form input[id="firstName"]').attr("readonly", true);
$('form input[id="firstName"]').css('background-color' , '#DEDEDE');
$('form input[id="lastName"]').attr("readonly", true);
$('form input[id="lastName"]').css('background-color' , '#DEDEDE');
$('form input[id="emailAddress"]').attr("readonly", true);
$('form input[id="emailAddress"]').css('background-color' , '#DEDEDE');
});
</script>
video: https://www.useloom.com/share/1498dbc067ee4d098b52141bd307fcfe
form link: https://ap216.infusionsoft.com/app/orderForms/TEST-FLEMING
Thanks!