samsono / Easy-Responsive-Tabs-to-Accordion

Easy responsive tabs - is a lightweight jQuery plugin which optimizes normal horizontal or vertical tabs to accordion on multi devices like: web, tablets, Mobile (IPad & IPhone). This plugin adapts the screen size and changes its action accordingly.
Other
603 stars 259 forks source link

to remove hash in url #46

Open codebyMahesh opened 10 years ago

codebyMahesh commented 10 years ago

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 9 years ago

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 9 years ago

Thank you so much for this.

navedkhan012 commented 6 years ago

Thank you so much for this.

Xaconi commented 6 years ago

Thanks flor the solution!