blob: 1a506a26c6186a2fd4c7efb75cc7d2f1394286b5 (
plain)
1
2
3
4
5
6
7
8
9
|
// Make front-page search tabs colorful
// via: https://codepen.io/marifrahman/pen/aAEpD
$(document).ready(function(){
$("a[data-toggle='tab']").click(function(e){
$(".tab-content").css("border-color",$(this).css('backgroundColor'));
$(".tab-content").css("background-color",$(this).css('backgroundColor'));
});
});
|