Tagged Questions
0
votes
0answers
5 views
Which fires first: onpopstate or onbeforeunload?
When a visitor tries to leave a page in my site, I would like to confirm navigation and run a function except when the user hits the back button. Some believe this functionality is impossible; ...
0
votes
1answer
102 views
HTML5 History API: Refresh and Back issues
I'm writing code to create a UX similar to how photos are viewed on Facebook from the timeline...
Viewing the timeline, you click on the photo and it opens in a modal
You refresh and it goes to a ...
0
votes
0answers
114 views
HTML5 History popstate not working as expected
I am trying to achieve an effect whereby when a user presses a link in a webkit browser, instead of just loading the complete target page I want to select a specific div from the traget page and load ...
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
258 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
2answers
436 views
History object back button with iframes
I'm having problems with history object and iframes in javascript/html5. I wrote a simple project to describe my problem:
http://dktest.evermight.com/
It's a page with an iframe and a next button. ...
0
votes
1answer
70 views
url change without hash
I want to change url when i open big image in pop up window on a current page with preview images. I don't want use window.location.hash feature because i want to manipulate with new url through PHP ...
0
votes
1answer
90 views
HTML5 History API and leave page (to same domain)
With media players on site we use the History API and XHR to allow navigation through the site without causing page refreshes (i.e. causing the media to stop).
This works nicely until the following ...
1
vote
1answer
87 views
html 5 history restores some changes and not others?
I'm new to using the html 5 history object. I tried the following code:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
...
2
votes
1answer
76 views
event.state of history object in html 5 is null
I'm playing with the history object for the first time. I have the following code which I've been testing in chrome:
<!DOCTYPE html>
<html>
<head>
...
0
votes
0answers
79 views
Using HTML5 History with wordpress and htaccess
I am using html5 history pushState to keep track of where a user is on the main page of my Wordpress installation. Everything works great, but the thing is if I want to share the url or reload the ...
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:
...
0
votes
0answers
227 views
Strange Behavior of window.location.hash Containing Dots / Periods
Never seen this or could imagine. My URL looks similar to this:
www.site.com/root/path1/path2/123/some-path-1/page.1.2.html
At some point I update URL with hash so dynamic user interaction would ...
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" ...
2
votes
1answer
971 views
HTML5 history disabling forward button
I am writing a single page javascript application using the HTML5 History API. The application loads content via Ajax and internally maintains state information on the foreground screen using a screen ...
2
votes
1answer
503 views
.back, and .pushState - a tale of two histories
This isn't so much a question, but a discovery as a result of an interesting problem. It's also a sort of "Learn from my fail"
I'm attempting to write unit tests for an HTML5 history duck punch for ...
0
votes
0answers
104 views
HTML5 History API popsate Chrome Issue
Thank you in advance for any help.
I am creating a Single page application that uses tabs to display content.
What I want is when users click tabs, it gets pushed to the history, so that for example ...
0
votes
2answers
2k views
HTML5 History, Back Button and external links
I have an HTML5 application that manipulates the browser history to show the proper URL for Ajax calls. This works great, but a problem occurs when my application has hyperlink to an external site, ...
0
votes
1answer
114 views
What popular websites are using HTML5 History API?
I'm researching HTML5 History API, and curious what popular websites are using it. I realize only using History API isn't practical considering IE9 and older browsers don't support it, so I'm more ...
0
votes
2answers
363 views
HTML5 History API Implementation
This might sound like a duplicate, but I have searched through the forum questions and I haven't found what I was looking for.
So, I have been reading for a while now, and I still cannot decide what ...
0
votes
2answers
295 views
Re-using HTML history state when browser previous/next buttons are clicked
I'm trying to implement the HTML5 history feature to perform AJAX loading of page content. So far my JS looks like this:
// saving current page to history
var current_url = "page1"
var ...
1
vote
3answers
606 views
HTML5, Codeigniter and history rewrite / refresh
I am using HTML5 boilerplate with a codeigniter backend. I am actually new to codeigniter.
I have created a controller called home.php that defines the html5 view in index and have a couple of other ...
0
votes
1answer
572 views
Use of HTML5 history for full AJAX nagivation
I would like to use the HTML5 window.history feature to implement full AJAX navigation on my website. I have found a demo which shows an implementation of window.history whereby some content is passed ...
0
votes
2answers
1k views
binding window to popstate event triggered twice
Simply binding the window (in jQuery) to popstate, the event is always triggered twice.
$( window ).bind( 'popstate', myFunction );
There's nothing in myFunction() to cause this - I've tried ...
4
votes
6answers
4k views
Is there an Ember.js equivalent to Backbone.js Router for history and hash changes?
In Backbone.js you can use the Router to bind to # changes to navigate around a single-page HTML5 app.
Is there an equivalent for Ember.js? Or have I missed something fundamental about its design?
2
votes
4answers
896 views
How to pass jquery object to history.pushState
var data = { url: $(this).attr('href'), selector: $(this) };
history.pushState(data, 'foo', $(this).attr('href'));
When I do this I get a error:
Component returned failure code: 0x8000ffff ...
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
...
3
votes
2answers
937 views
HTML5 History: Problems with back button after full page load
I build a web app which uses AJAX and the HTML5 history (with a fallback for older browsers, history.js).
Only part of my app is loaded through background javascript (the part which is quite heavy ...
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 ...
7
votes
1answer
2k views
HTML5 push/replaceState and the <base> tag causes security exception
I have a test version of a site located at a subdomain of the normal site, like:
http://test.x.com instead of http://x.com.
I use the <base> tag to translate all resource requests back to the ...
2
votes
1answer
298 views
Learning the history API
I am trying to learn the history API following the write-up at [http://diveintohtml5.ep.io/history.html]. My simple test web page is as follows
<body>
<ul>
<li><a ...
2
votes
1answer
2k views
jQuery $.address() plugin: hashbang links colliding with HTML5 state support
Here's a scenario that describes the problem:
User A has a browser with HTML5 state support, and sends this link to User B:
http://domain.tld/node
User B, who uses a browser without HTML 5 state ...
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)
...
2
votes
1answer
494 views
Why isn't popstate triggered in Safari when an iframe is loading?
In Safari, if there's an iframe loading, and the user changes the history state by going back or forward, the popstate event isn't triggered, causing the application state and the window location to ...
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 ...
5
votes
2answers
4k views
When the back button triggers popState how can I prevent a page refresh?
I am trying to modify the content in my page without a reload. Currently my code reads:
window.onpopstate = function(event){
// Ajax Request the Page and replace content with new content
};
...
3
votes
3answers
721 views
Overriding history.pushState leads to error in opera 11
I'm injecting the following code into a webpage via a greasemonkey script/opera extension to trap the history.pushState command, so I can do some processing whenever it's fired and still allow the ...
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 ...
18
votes
6answers
14k views
window bind POPSTATE
Given the following:
$(window).bind("popstate", function() {
alert('popstate');
});
On first load, the alert fires with FireFox and Chrome but not Safari. Why is that? Anyone else seen this and ...
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?
1
vote
1answer
776 views
Getting state after HTML5 history.pushState(…)
It seems after calling history.pushState, window.location.pathname doesn't get changed (at least in Safari). Any way to get the changed pathname? I currently just keep track of it in a global var.
