Skip to content

Instantly share code, notes, and snippets.

@fret2buzz
Created March 14, 2013 19:36
Show Gist options
  • Select an option

  • Save fret2buzz/5164464 to your computer and use it in GitHub Desktop.

Select an option

Save fret2buzz/5164464 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