to remove hash in url
Opened this issue · 4 comments
codebyMahesh commented
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?
akhilnwork commented
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;
mikezclements commented
Thank you so much for this.
navedkhan012 commented
Thank you so much for this.
Xaconi commented
Thanks flor the solution!