Horje
Make Bootstrap tab Active on the bases of URL link Code Example
Make Bootstrap tab Active on the bases of URL link
var url = window.location.href;
var activeTab = url.substring(url.indexOf("#") + 1);
 $(".tab-pane").removeClass("active in");

$("#" + activeTab).addClass("active in");

$('a[href="#'+ activeTab +'"]').tab('show')
bootstrap set active tab javascript
$(document).ready(function(){
    activaTab('aaa');
});

function activaTab(tab){
    $('.nav-tabs a[href="#' + tab + '"]').tab('show');
};




Whatever

Related
No module named 'keras.engine.topology' Code Example No module named 'keras.engine.topology' Code Example
kibana docker Code Example kibana docker Code Example
mongodb create user Code Example mongodb create user Code Example
bootstrap cdn css Code Example bootstrap cdn css Code Example
error: src refspec main does not match any Code Example error: src refspec main does not match any Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8