I want to navigate to http://localhost:9000/profile#subscribe and have the #subscribe tab active/open when the page loads...
How can I do that, the above url does not seem to active it...
Hi Jeffrey.
You can add this code to your main JavaScript code:
if ( document.location.hash)
{
$('.nav-tabs a[href="' + document.location.hash + '"]').tab ( 'show');
}
Most helpful comment
Hi Jeffrey.
You can add this code to your main JavaScript code:
if ( document.location.hash)
{
$('.nav-tabs a[href="' + document.location.hash + '"]').tab ( 'show');
}