Open GoogleCodeExporter opened 9 years ago
In addition I am using SSL. Could this cause an issue?
Original comment by stephen....@gmail.com
on 5 Nov 2008 at 11:28
I have solved the issue. It seems to be caused by having a <div> with an id
attribute
that has the same value as the hash in the url. Very odd and hard to debug.
Hope this
helps others who are experiencing the same issue.
Diagram:
::::: Broken Code :::::
<a href="javascript:dhtmlHistory.add('location');">link</a>
<div id="location"></div>
::::: Fixed Code :::::
<a href="javascript:dhtmlHistory.add('tab-location');">link</a>
<div id="location"></div>
Original comment by stephen....@gmail.com
on 5 Nov 2008 at 1:46
Thank you so much I had the same problem, I can confirm that with the latest svn
build the history did not work correctly when I had an h3 element with the same
ID as
the # location. (so not just divs).
I changed it to an additional class instead of an ID and it now works.
Original comment by wingp...@yahoo.com
on 24 Jul 2009 at 9:19
Original issue reported on code.google.com by
stephen....@gmail.com
on 5 Nov 2008 at 10:38