$(function(){ $('.review-image-modal').click(function(){ cl($(this)); $(this).fancybox({ 'autoScale': true, 'transitionIn': 'elastic', 'transitionOut': 'elastic', 'speedIn': 500, 'speedOut': 300, 'autoDimensions': true, 'centerOnScroll': true }) }); }); var spinStart = function(button) { button.prop('disabled', true); if (!button.find('.button-loader').length){ button.html('
' + button.html()); } }; var spinStop= function(button) { button.prop('disabled', false); button.find('.button-loader').remove(); }; var cl = function(obj){ console.log(obj); }