Private: Home › Forums › HTML Templates › Mixed Modern and Professional HTML Template › Vertical Tab combinded with horizontal tab › Reply To: Vertical Tab combinded with horizontal tab
February 27, 2015 at 3:31 pm
#2304
Participant
You want to apply the active class to a second horizontal tab and when you refresh the site you want it to stay active, not the first one?
You can achieve this by modifying the line 70 of include.js file.
var $tabLis = $(this).find('li');
add “.active” to “li”:
var $tabLis = $(this).find('li.active');
Let me know if it works.
Robert