samsono/Easy-Responsive-Tabs-to-Accordion

to remove hash in url

Opened this issue · 4 comments

I already submitting data from post method and after am going to use Easy Responsive tab plugin in vertical type, it passes '#' and id name in url when am going to navigate to tabs, I dont want this in url, how can I sort this?

What I've done is in 'easyResponsiveTabs.js' search for
var newHash = respTabsId+(parseInt($tabAria.substring(9),10)+1).toString();

replace the line with
var newHash = "";

and then seach for
newHash = '#'+newHash;

replace the line with
newHash = ''+newHash;

Thank you so much for this.

Thank you so much for this.

Thanks flor the solution!