Customer Feedback Form

We Value Your Feedback

Your feedback helps Robb Paper Company improve our products, services, and customer experience. Please take a moment to share your thoughts.

By submitting this form, you agree to be contacted regarding your inquiry. Your information will only be used to respond to your request.

document.addEventListener("DOMContentLoaded", function () {document.querySelectorAll(".custom-rating").forEach(function(rating){const stars = rating.querySelectorAll(".stars span"); const form = rating.closest("form");if(!form) return;const hidden = form.querySelector('input[name="form_fields[rating]"]');stars.forEach(function(star){star.addEventListener("click", function(){let value = this.dataset.value;stars.forEach(function(s){ s.classList.remove("active"); });stars.forEach(function(s){ if(s.dataset.value <= value){ s.classList.add("active"); } });if(hidden){ hidden.value = value; }});});});});