Skip to content

Instantly share code, notes, and snippets.

@nfxpnk
Forked from fret2buzz/gist:5164464
Created March 14, 2013 19:38
Show Gist options
  • Select an option

  • Save nfxpnk/5164478 to your computer and use it in GitHub Desktop.

Select an option

Save nfxpnk/5164478 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$('.offer').eq(0).addClass('active');
var link = $('.offer_link a')
link.on('click', function(e){
var panel = $(this).closest('.offer');
if (panel.hasClass('active')) {
panel.removeClass('active');
}
else {
panel.addClass('active');
};
e.preventDefault();
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment