Did Patriot Plumbing & Rooter meet your expectations?
Tell us about your experience on
Did you specifically find us in the Google Guaranteed section pictured above?
Help us be a better company.
We would appreciate your feedback to guide us on improving.
// Handle the "Yes" button click
document.getElementById('yesBtn').addEventListener('click', function() {
document.getElementById('step1').style.display = 'none';
document.getElementById('step2').style.display = 'block';
});
// Handle the "No" button click
document.getElementById('noBtn').addEventListener('click', function() {
document.getElementById('step1').style.display = 'none';
document.getElementById('stepFeedback').style.display = 'block';
});
// Redirect to Google review page and show Google Guaranteed section
document.getElementById('googleBtn').addEventListener('click', function() {
document.getElementById('step2').style.display = 'none';
document.getElementById('step3').style.display = 'block';
});
// // Handle the "Yes" or "No" Google Guaranteed Section buttons
// document.getElementById('yesGoogleBtn').addEventListener('click', function() {
// alert('Thanks for confirming you found us through Google Guaranteed!');
// // Add any other logic for this button click
// });
// document.getElementById('noGoogleBtn').addEventListener('click', function() {
// alert('Thanks for your feedback!');
// // Add any other logic for this button click
// });
function openFacebook(url) {
window.open(url, '_blank');
}
function openGoogleLsa(url) {
window.open(url, '_blank');
}
function openGoogle(url) {
window.location.href = url;
}