Skip to main content
Larry
Bryant
FL Office | Health Insurance Representative
As an office partner with Daines Financial since 2004, Larry helps corporations and individuals, young and old, with their health and group insurance* needs. Health insurance has become increasingly complex to research, enroll and maintain. Larry will listen to your needs and assist in the discovery of a company and plan design for you.
Larry is married to his wife, Donna. They have two daughters and three grandchildren.
* Health insurance providers are not affiliated with or endorsed by any company of Principal Financial Group®.
<script>
// Contact Validator
$.validator.setDefaults({
submitHandler: function (e) {
var _f = $('#form');
if (_f.find('.antispam input').val() != 'not spam') {
// honeypot was populated. don't submit
return false;
} else {
var url = 'form_proc.cfm';
var formData = $('#form').serializeArray();
$.post(url, formData).done(function (data) {
console.log('Form submitted');
});
console.log(formData);
// Clear fileds once form is submitted
$('#form').closest('form').find('input[type=text], textarea').val('');
$('#form').fadeOut();
$('.checklist-form').empty().hide().html(
'Thank you! Your submission is complete
'
).fadeIn('slow');
}
}
});
// Equal to static Value
$.validator.addMethod("equalStatic", function (value, element, param) {
return this.optional(element) || value === param;
}, "You must answer the question correctly");
$('#form').validate({
rules: {
Name: 'required',
Email: {
required: true,
email: true
},
question: {
required: true,
equalStatic: '24'
}
},
messages: {
Name: 'Name is Required',
Email: 'Email Address is Incorrect',
}
});
document.addEventListener('DOMContentLoaded', () => {
const form = document.getElementById('tqcf');
if (!form || typeof formProtection === 'undefined') return;
// Create hidden honeypot field
const hp = document.createElement('input');
hp.type = 'text';
hp.name = 'honeypot';
hp.className = 'fp-hp sr-only';
hp.tabIndex = -1;
hp.autocomplete = 'off';
hp.setAttribute('aria-hidden', 'true');
form.prepend(hp);
// Make sure submit button has .fp-submit class
const btn = form.querySelector('.contact-form-button');
if (btn) btn.classList.add('fp-submit');
// Initialize protection manually
formProtection.protect({
el: form,
action: form.dataset.fpAction,
hpi: form.querySelectorAll('.fp-hp'),
submit: form.querySelectorAll('.fp-submit')
});
});