Skip to content

Instantly share code, notes, and snippets.

@neosergio
Created January 21, 2013 21:32
Show Gist options
  • Save neosergio/4589636 to your computer and use it in GitHub Desktop.
Save neosergio/4589636 to your computer and use it in GitHub Desktop.
Just for fun in accordion functionality
//playing with collapsibles areas
$(document).ready(function(){
$("[data-toggle='collapse']").click(function(e){
var $this = $(this);
var $icon = $this.find("i[class^='icon-chevron']");
console.log('llega');
if ($icon.hasClass('icon-chevron-right')){
$icon.removeClass('icon-chevron-right').addClass('icon-chevron-down');
} else {
$icon.removeClass('icon-chevron-down').addClass('icon-chevron-right');
}
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment