Created
May 13, 2013 14:33
-
-
Save wegorich/5568727 to your computer and use it in GitHub Desktop.
fancybox load html contet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ -> | |
$(document).on('click', '.fancybox', (e)-> | |
$.fancybox.showLoading() | |
$.ajax | |
url: $(this).attr('href') + type, | |
success: (data)-> | |
$.fancybox.hideLoading() | |
$.fancybox(data, { | |
overlay : | |
locked : true | |
}) | |
$('.modal .btn-close').click -> | |
$.fancybox.close(); | |
dataType: 'html' | |
e.preventDefault() | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment