I’m trying to make an page with tabbed content. I’m using foundation tabs (http://foundation.zurb.com/docs/tabs.php).
I made an link offside the <dl></dl> element, and it doesn’t work if I use only <a href="#simple5">. I tried an javascript to reload the page <a href="#simple5" onClick="window.location.reload( true );">, but doesn’t work either.
How can I proceed?
When you call JS on click, it is run before the default action. You reload a page without hashtag.
Try to add the ID with JS :
<a href="#" onClick="window.location = '#simple5'; window.location.reload(true);">You can also use et function and get the id dynamically.
Sorry for my bad english. ^-^