I am suspecting in file http://github.com/tkyk/jquery-history-plugin/blob/master/samples/ajax/ajax.js
line 13 and 14
load(url);
$.history.load(url);
in Firefox, Chrome, and IE 8, I see that the page is loaded twice when 1, 2, or 3 is clicked on.
Is it true that line 13, "load(url);" can be removed because $.history.load(url) will trigger the function registered with $.history.init(), which does a load() already?
Can someone familiar with the package confirm this?
(This is the best Ajax History and Bookmark library I found for jQuery. If someone knows another good one please let us know).