IDDRS/static/js/toggle.js

6 lines
189 B
JavaScript
Raw Normal View History

2022-06-27 13:48:56 +00:00
$(document).ready(function(){
$('#filterBtn').click(function(){
$child=$(this).children('i');
$child.toggleClass("fa-arrow-down").toggleClass("fa-arrow-up");
});
});