We’re so confident that Social AI will transform your dental practice’s online presence and attract more patients, we’re offering you a complimentary 30-day subscription to experience the results firsthand.
jQuery(document).ready(function($) {
// Listen for clicks on any navigation item
$('.iverson-scanning-systems-nav-item').on('click', function() {
// 1. Remove 'active' class from previously active nav item
$('.iverson-scanning-systems-nav-item').removeClass('active');
// 2. Hide previously active content item by removing 'active' class
$('.iverson-scanning-systems-content-item').removeClass('active');
// 3. Add 'active' class to the clicked navigation item
$(this).addClass('active');
// 4. Get the ID of the content item to show (from the data-target attribute)
var targetId = $(this).data('target');
// 5. Show the corresponding content item by adding 'active' class
$('#' + targetId).addClass('active');
});
});