Last active
December 18, 2015 18:09
-
-
Save acepek/5823944 to your computer and use it in GitHub Desktop.
Colorbox - open all links to images in a modal [in jQuery]
This file contains hidden or 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
$('a').on('click touchstart', function(){ | |
var img_href = $(this).attr('href'); | |
var img_ext = img_href.substr(img_href.lastIndexOf('.')+1); | |
var ext_array = new Array('gif','jpg','png','jpeg'); | |
if($.inArray(img_ext,ext_array)>-1) { | |
$(this).colorbox(); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment