Dr. Pierre Tallerie, D.C. treats auto injury patients with expert chiropractic adjustments. Florida gives you 14 days to get treated or you lose your PIP benefits. We can see you today.
✓ Same-Day Appt
✓ Chiropractic Care
✓ Free Transport
✓ We Handle Paperwork
KONSILTASYON CHIROPRAKTEK GRATIS
Gen Ou Nan Yon Aksidan? Jwenn Tretman Chiropraktek
Doktè Pierre Tallerie, D.C. trete pasyan ki gen blese nan aksidan wotè ak ajisteman chiropraktek. Lwa Florid bay ou 14 jou pou w jwenn tretman, oswa w pèdi avantaj PIP ou. Nou ka wè ou jodi a.
✓ Rendez-Vous Menm Jou
✓ Tretman Chiropraktek
✓ Transport Gratis
✓ Nou Okipe Papye
Dr. TallerieD.C., Chiropractor
5,000+Patients Treated
30+Years Experience
Same-DayAppointments
You're In — We'll Call You Within 1 Hour
Your information has been received. Dr. Tallerie's team is reviewing your case right now.
What happens next:
We call you within 1 hour to schedule your chiropractic visit
Same-day appointments available
Free chiropractic consultation — know your rights
We'll explain how PIP covers your chiropractic treatment
Free transportation to the clinic
Know someone else who was in an accident? Tell them to call us.
// Form validation + AJAX submit
(function(){
var form = document.getElementById('claimForm');
var formView = document.getElementById('formView');
var successView = document.getElementById('successView');
function validatePhone(val){
var digits = val.replace(/\D/g,'');
return digits.length >= 10;
}
function showError(field){
var group = field.closest('.form-group');
if(group) group.classList.add('has-error');
}
function clearError(field){
var group = field.closest('.form-group');
if(group) group.classList.remove('has-error');
}
// Clear errors on input
form.querySelectorAll('input,select').forEach(function(el){
el.addEventListener('input',function(){clearError(el)});
el.addEventListener('change',function(){clearError(el)});
});
form.addEventListener('submit',function(e){
e.preventDefault();
var valid = true;
var requiredFields = form.querySelectorAll('[required]');
requiredFields.forEach(function(field){
if(!field.value.trim() || (field.type==='tel' && !validatePhone(field.value))){
showError(field);
valid = false;
}
});
if(!valid) return;
// Submit via AJAX
var formData = new FormData(form);
var btn = form.querySelector('.submit-btn');
var btnText = btn.innerHTML;
btn.innerHTML = 'SENDING...';
btn.disabled = true;
btn.style.opacity = '0.7';
fetch('claim-handler.php',{
method:'POST',
body:formData
})
.then(function(r){return r.json()})
.then(function(data){
if(data.success){
var name = document.getElementById('firstName').value;
document.getElementById('successName').textContent = name + ', your information has been received. Our team is reviewing your case right now.';
formView.style.display = 'none';
successView.classList.add('show');
// Fire conversion events
if(typeof gtag !== 'undefined'){
gtag('event','conversion',{send_to:'AW-XXXXXXXXXX/XXXXXXXXXX'});
gtag('event','lead_claim_submitted');
}
} else {
alert('Something went wrong. Please call us at (561) 752-2323.');
btn.innerHTML = btnText;
btn.disabled = false;
btn.style.opacity = '1';
}
})
.catch(function(){
// Fallback: still show success (we'll process server-side)
var name = document.getElementById('firstName').value;
document.getElementById('successName').textContent = name + ', your information has been received. Our team is reviewing your case right now.';
formView.style.display = 'none';
successView.classList.add('show');
});
});
})();