Tagged Questions
1
vote
0answers
68 views
How to bookmark pushState
Please, can anyone guide me with this pushState code.
Is there a better way to do this?
Also, it cannot be bookmarkable. Why?
Thank you!
$(function(){
if (Modernizr.history) {
wrap = ...
1
vote
1answer
261 views
history.pushState - not working?
I want to change html without reload. I do it like:
$('#left_menu_item').click(function(e) {
if (!!(window.history && history.pushState)) {
e.preventDefault();
...
1
vote
0answers
107 views
pushState on existing url, on refresh cause double url in history
I've a problem. obviously.
First of all, sorry for my bad english. Then...
I'm using History.js for pushState and other function of History API in HTML5. But this is not the point.
example:
i've ...
1
vote
1answer
4k views
SecurityError: The operation is insecure - window.history.pushState()
I'm getting this error in Firefox's Console: SecurityError: The operation is insecure and the guilty is HTML5 feature: window.history.pushState() when you click on any thumbnail. It is supposed to ...
3
votes
2answers
318 views
Building a website without page reload, using new HTML5 history mechanics
I was looking for a way to change browser address location without causing a full page reload, thus I got some useful information, like this:
...
1
vote
0answers
126 views
how to implement onpopstate? confused after reading so many things
I am loading content using AJAX, and changing URL by using pushastate, below is my code, can anybody tell me how to implement onpopstate to enable back button in my case.
HTML
<div id="tabs" ...
0
votes
1answer
175 views
history states in ajax calls
I am using jquery ajax calls to change content in a div by clicking links, but my url always the same i mean its not changing by clicking the links just content changes.
so i find history.pushStates ...
2
votes
1answer
3k views
IE history push state
I have a webpage where the user has the possibility to display the terms and conditions without reloading the page, via AJAX. That, in itself, is no problem, however, I am also trying to push a ...
0
votes
1answer
239 views
History API, refresh and bookmark
pushState doesn't make a request, it just changes the url and stores a new history entry. Thinking about this concept, it's impossible to refresh or bookmark because the ...
0
votes
2answers
1k views
Jquery Asual Address - Back Button PopState
I am trying to use the Asual Address plug in so that my back button works on ajax calls. I am so confused on how this work and every tutorial i find says to impliment it different. I haven't been ...
2
votes
1answer
3k views
How to replace the location hash and only keep the last history entry?
I'm using the jQuery BBQ plug-in to track the users progress through the page. However, I only want to create 1 additional entry in the user's history, not one for every hash change.
I've tried the ...
7
votes
1answer
2k views
popstate returns event.state is undefined
I am learning about history in HTML5, in this example (open the JavaScript browser console to see error) the event.state.url returns:
Uncaught TypeError: Cannot read property 'url' of undefined
...
1
vote
1answer
229 views
Get controller and action names with pjax?
In my application I use this technique:
<body id="action" class="controller">
Is there a way to pjax send it along with the #container?
2
votes
1answer
180 views
HTML5 History API with Standard links
So, after redesigning my site, I thought I would use the HTML5 history API, when I saw brilliant use of it here: http://diveintohtml5.ep.io/examples/history/casey.html
Problem is, the code provided ...
24
votes
3answers
1k views
Workaround for history animation in Safari for OS X Lion?
In Safari for OS X Lion, when you use the swipe gesture to navigate forward or backward in history, the window animates as though you were moving through physical pages. The problem with this ...
1
vote
2answers
2k views
How to use javascript history API
In github's blog post about how they created the new tree slider, they give this as the code used:
$('#slider a').click(function() {
history.pushState({ path: this.path }, '', this.href)
...
7
votes
3answers
1k views
How to cope with refreshing page with JS History API pushState
A small website I was creating (more like fiddling) uses AJAX to load each page. Previously I was changing the hash of the url, this worked great but was ugly, and the user could refresh the page, and ...
6
votes
2answers
2k views
Detect whether HTML5 History supported or not
How can i check if the browser you are using supports the HTML5 history api?
As you can see here http://caniuse.com/#search=history only chrome +ff4 and several others supports this and i wish to do ...
27
votes
2answers
2k views
How to get notified about changes of the history via history.pushState?
So now that HTML5 introduces history.pushState to change the browsers history, websites start using this in combination with Ajax instead of changing the fragment identifier of the URL.
Sadly that ...
4
votes
1answer
2k views
HTML5 History Tutorial
Anyone knows of any good tutorial/guide that explains a proper approach for using HTML5 History with Pushstate and Onpopstate event?
