Skip to content

Instantly share code, notes, and snippets.

@acepek
Last active December 18, 2015 18:09
Show Gist options
  • Save acepek/5823944 to your computer and use it in GitHub Desktop.
Save acepek/5823944 to your computer and use it in GitHub Desktop.
Colorbox - open all links to images in a modal [in jQuery]
$('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