jQuery(document).ready(function($) {
$('#doctor-search-input').on('keyup', function() {
var value = $(this).val().toLowerCase();
// Elementor Loop Grids use the '.e-loop-item' class for each product card
$('.e-loop-item').filter(function() {
// This looks at the product title inside the loop item
var doctorName = $(this).find('.e-loop-item-title, h2, h3').text().toLowerCase();
$(this).toggle(doctorName.indexOf(value) > -1);
});
});
});