“I am 100% better post-surgery thanks to Lake Pointe Orthopaedics.”
—Joyce Neal – Garland, TX
—Joyce Neal – Garland, TX
function showTestimonials(physicianId, locationId, format) {
fetch(‘https://reviews.rater8.com/webwidget/api/testimonials/’ + physicianId + ‘?format=’ + format)
.then(function (response) {
response.text()
.then(function (snippet) {
var div = document.getElementById(locationId);
document.getElementById(locationId).innerHTML = snippet;
var arr = div.getElementsByTagName(‘script’);
for (var n = 0; n < arr.length; n++) eval(arr[n].innerHTML);
});
});
}
showTestimonials(‘7fd5e9f8’, ‘rater8Testimonials’, ‘htmlComments’)