6 lines
189 B
JavaScript
6 lines
189 B
JavaScript
$(document).ready(function(){
|
|
$('#filterBtn').click(function(){
|
|
$child=$(this).children('i');
|
|
$child.toggleClass("fa-arrow-down").toggleClass("fa-arrow-up");
|
|
});
|
|
}); |