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
604 stars 259 forks source link

Tabs rewrite the whole url. #67

Open msdevl opened 9 years ago

msdevl commented 9 years ago

Hi,

When I click on a tab my complete URL will be deleted and it is only http://mydomain.com/#parentHorizontalTab2. How can I fix the problem?

Thx!

bluun commented 9 years ago

replace the following line (somewhere around line number 210):

history.replaceState(null, null, newUrl + newHash);

by:

var newUrl = document.location.href.indexOf('#') > -1 ? document.location.href.split('#')[0] : document.location.href;
history.replaceState(null, null, newUrl + newHash);