Skip to content

Instantly share code, notes, and snippets.

@billkeller
Created November 22, 2010 17:50
Show Gist options
  • Save billkeller/710334 to your computer and use it in GitHub Desktop.
Save billkeller/710334 to your computer and use it in GitHub Desktop.
colorbox popup
$("a.enlist").click(function(){
$.fn.colorbox({
href: $(this).attr('href'),
iframe: true,
width: 350,
height: 205,
escKey: true,
transition: 'elastic'
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment