File: D:/HostingSpaces/SBogers85/equichecker.com/wwwroot/js/base.js
$('.primary-button').on('mouseover', function(){
$(this).find($('.arrow-icon')).animate({right: 40}, 200);
$(this).find($('.arrow-icon')).animate({right: 30}, 200);
});
$('.secondary-button').on('mouseover', function(){
$(this).find($('.arrow-icon')).animate({right: 40}, 200);
$(this).find($('.arrow-icon')).animate({right: 30}, 200);
});
$('.primary-button').on('click', function(){
var link = $(this).attr('data-href');
window.location = link;
});
$('.secondary-button').on('click', function(){
var link = $(this).attr('data-href');
window.location = link;
});