Created
January 21, 2013 21:32
-
-
Save neosergio/4589636 to your computer and use it in GitHub Desktop.
Just for fun in accordion functionality
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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