The HTML5 History API allows a web page to manipulate the contents of the history stack in order to dynamically update the URL and respond to the back button.

learn more… | top users | synonyms

0
votes
1answer
33 views

JavaScript pushstate history

browser: firefox for example, there are several pages named: 1.php, 2.php, 3.php, 4.php I click the link one by one, so the browser history will be shown when I click the back button on browser. It ...
0
votes
0answers
16 views

Ajax / HTML5 history states (popState, pushState, etc) - back button behavior

There have been several questions about the pushState functionality of HTML5, but I'm not able to find anything about two issues I'm having. My popstate handler is defined like so: ...
3
votes
1answer
20 views

history pushState and scroll position

I am trying to retrieve the scroll position when a user navigates back in the browser history using HTML5 popstate handler. Here is what I have: $(document).ready(function () { ...
0
votes
0answers
12 views

Pushstate and popstate, on refresh doesn't work

I've been working with pushstate and popstate history API methods, when the user clicks on a element of a navigation bar I make a pushState with some data and I change the URL for something like ...
0
votes
1answer
65 views

HTML5 pushstate and SEO link

I try to implement pushstate history on my website in order to load content from a single.php page inside a index.php container. My website have two main page : index.php and single.php . On the ...
0
votes
0answers
29 views

Why doesn't work (pushstate)

I'm trying to use pushstate. But it doesn't work. Actually, my "loadContent()" function doesn't work. It doesn't make any difference. I'll show u my codes. Javascript: $(function() { ...
-4
votes
0answers
32 views

Need to learn history.js [closed]

I'm trying to learn history.js for three days. I've found good examples but there's no example to teach me how to load new page. for example, i've downloaded history.js master from github and used ...
0
votes
0answers
38 views

Google DFP Refresh Ads removes window.history stack in Internet Explorer 10

I currently am a developer on a site which uses pushstate for page transitons. The site uses Google DFP Ads, which refresh on each page transition / route I am noticing a problem in Internet ...
0
votes
0answers
29 views

Yeoman backbonejs with pushstate causing issues with grunt-contrib-connect

I have a backbonejs application in my yeoman dev environment. My application uses pushstate, however this causes the connect server to issue 404s when the page is reloaded (via live reload) or when I ...
2
votes
0answers
15 views

website on localhost not loading on refresh once the url is updated through window.pushState

My website is not loading on refreshing the page once the url is updated by window.pushState. My website is saved on this location: http://localhost/ajax.test/index.html but after clicking the link ...
0
votes
0answers
26 views

How to make the back button work after pushState in Chrome / Safari

I have an error handler in my single page app that reloads the page if the ajax request fails for some reason, displaying the error response to the user. With Chrome and Safari, a subsequent click of ...
0
votes
1answer
52 views

How does the AngularJS router work for wildcards and pushstate?

We are investigating a migration from Backbone to Angular. Because of our design, we only need to migrate the router. I'd like to understand how wildcard routing works for angular. Here is an ...
0
votes
1answer
19 views

jQuery Address appends new deep link to existing deep link

It's i think about the same issue as here but no solution there was given. If you directly enter a jQuery Address loaded website through a deep link http://www.domain.com/deeplink1and you would want ...
0
votes
0answers
59 views

Lightbox/modal using Ajax, Pushstate and Popstate similar to Instagram, Pinterest, Facebook

I can't figure out how to use pushstate and popstate for my ajax lightbox. What I need: On click, open lightbox and update url. On close lightbox, update url to previous state. On browser backward ...
0
votes
0answers
23 views

History.js - subdirectory urls with # not #./

I'm building a single page application in a subdirectory of my site and have started using history.js for updating the url. The HTML4 fallback with hashes by default includes the whole path after the ...
0
votes
1answer
121 views

How do I mix links that trigger page refreshes, with Angular's html5Mode = true without breaking the back button?

I'll walk through the problematic flow... I load google.com (just as a starting point) I goto app.com I nav to app.com/projects I nav to app.com/api/test (through window.location) I see the raw JSON ...
1
vote
1answer
42 views

History.js vs. window.history for HTML5-only mode

Does History.js offer any substantial advantages over HTML5's window.history nowadays? We're not interested in supporting/falling back to the HTML4 hashbang URLs. History.js doesn't support anchors ...
1
vote
1answer
114 views

pushState preventing Backbone.js routes from working

I'm having an issue with HTML5 pushState in a RequireJS/Backbone.js app, I'm pretty sure I'm doing something wrong but I can't identify the problem, I've tried for hours. Foreword: All of the ...
2
votes
0answers
80 views

S3 Static Website Hosting Route All Paths to Index.html

I am using S3 to host a javascript app that will use HTML5 pushStates. The problem is if the user bookmarks any of the URLs, it will not resolve to anything. What I need is the ability to take all url ...
0
votes
1answer
25 views

How to handle popstate when url ceased to exist?

I would like to be able to do two things with html5 popstate, I'm not using any plugins just these two methods: Push State: function contentLoaded(...) { ... window.history.pushState({ ...
3
votes
4answers
458 views

browser back and forward button does not invoke callback method with statechange event of history.js

so I used (https://github.com/browserstate/history.js) and have a piece of code like this History.Adapter.bind(window, 'statechange', function() { var State = History.getState(); ...
0
votes
1answer
45 views

jQuery pushState load content, different URLs

I encountered some problems when I tried to recreate a demo from http://html5.gingerhost.com/. I will try to describe the situation as clear as possible: On my page there is < a href="index"> ...
0
votes
0answers
61 views

Angular + Rails app hang up whole browser when trying to fetch subpage

I'm writing application using Angular and Rails. I have fallback in my ApplicationController: class ApplicationController < ActionController::Base protect_from_forgery before_filter ...
0
votes
0answers
55 views

Browsing back with history push state and # links

So I have succesfully applied ajax to my main body container and am able to navigate throughout my website with the footer and header being static and just the body changing. I also fixed the bug ...
0
votes
0answers
36 views

Using PushState with Ajax pages

I have recently started using pushState with ajax page loads, & it works nicely with loading new page content into place, & using the back & forward buttons... My problem is that, if I ...
0
votes
1answer
145 views

history.pushState() and clicking back/forward button

This is my code to change url on ajax load which works $.ajax({ url: url, success: function (data) { $(selector).html(data); var title = data.match("<title>(.*?)</title>")[1]; ...
0
votes
1answer
62 views

Efficiently handling backbone pushState routes server-side?

I have Backbone working with pushState. It's very nice, but now I understand that I should support loading the app from any route that backbone uses. For example, if somebody enters a backboen route ...
0
votes
1answer
178 views

Html4 browsers does not support history.pushState and history.replaceState methods of History API from HTML5

I am working on an ember application (using ember-1.0.pre.js). And I'm trying to provide cross browser compatibility on IE8. The issue is with url generate after every transition, it seems ...
0
votes
1answer
46 views

JS: history.pushState not working in function

I'm trying to wrap my head around history.pushState functionality, it works if I use it in console but won't produce the desired results in a function on the page or in a jsfiddle. JSFIDDLE LINK HERE! ...
0
votes
1answer
130 views

pushState: How to add the query string without redirect

I studying the technique : History API pushState (HTML5) I need the command for working the Url withput redirect because I have the server's CherryPy. I cannot passing the data from Cherrypy (with ...
0
votes
1answer
67 views

History API in Safari - pushState / replaceState - state undefined

The following works in Chrome and Firefox, but not in Safari (6.0.2): var data = []; data.Message = "hi!" history.pushState({Data:data}, '', document.location.href); console.log(history); ...
2
votes
0answers
67 views

Why is Google Chrome going to the server on pushState?

I tested Chrome (linux and windows), Firefox, and Opera. Every time I do a pushState, Chrome is going to the server. It doesn't seem to use the request in any way, I only noticed it because I was ...
7
votes
4answers
820 views

back button in browser not working properly after using pushState (in Chrome)

I am using this type of line in an JS response if (history && history.pushState){ history.pushState(null, null, '<%=j home_path %>'); } but when I click back in the browser, I ...
0
votes
1answer
165 views

Marionette PushState URL Handeling - How to do it?

I have been unable to find any articles on Backbone.Marionette using pushstate withOUT Node.js, or grunt, or require where a serious discussion is made about URL handeling. A user should be able to ...
0
votes
1answer
195 views

History.JS back button doesn't quite work for first page

I'm using the history.js to change the URL for the page using pushState while changing the content with ajax. My problem is the initial page I go to doesn't work with the back button. The content is ...
2
votes
3answers
554 views

When I push a new URL to Backbone.history, the query params stays?

Let's say I'm using Backbone pushstate and I navigate to a page with query params: domain.com/user/111?hello=123 When I execute this: Backbone.history.navigate('/settings', true); My settings ...
4
votes
1answer
106 views

Is there a way to pushState() the parent window in facebook canvas?

I want my facebook canvas app to be able to update the address bar URL when changing context. So, for example, if my app's home URL is https://apps.facebook.com/myapp/, and the user clicks on some ...
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 = ...
2
votes
1answer
156 views

pjax submit form URL redirection

PJAX's documentation states that Github uses $.pjax.submit() in submitting a Gist form. A desired feature of an ajax form submission which Github nicely implements is that the URL redirects from the ...
0
votes
2answers
95 views

Is there any way to programmatically call and execute pjax from within my javascript file?

I have a function that waits for a user to click on an input of type text and then waits for the user to press the down and up arrow keys. When the user presses the down and up arrow keys the function ...
0
votes
0answers
118 views

Browser Back Button Issue in ajax pushstate

I'm working on a single page application where each section is loaded via ajax. When the page loading via ajax, I am changing the url using history.pushstate. After page loaded via ajax, while ...
0
votes
1answer
153 views

Making pushState for backbone work in subpaths for nginx

I have two backbone applications and one API on the same subdomain but i am having trouble making pushStates work for the applications with correct location regex. This is the paths im trying to ...
1
vote
1answer
266 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
422 views

Backbone router, pushstate, and relative urls

I'm making my first backbone app. I have pushstate enabled. In the router I have two routes. 'link1(/)' : 'link1Route', 'link2(/)' : 'link2Route' On my link1 page, I have a ...
0
votes
2answers
973 views

Backbone pushstate history not working

I am using backbone.js routes and i am struggling to make history to work. Here is the code i have: $(function() { var AppRouter = Backbone.Router.extend({ routes: { "/": ...
1
vote
1answer
110 views

Need some explaination about history.js by Benjamin

Currently I am facing the ajax URL change problem. Let's say I have an ajax call, when user click on the div and the div will expand and ajax get data from db but the url doesn't change. Then I ...
2
votes
1answer
329 views

Backbone.js PushState routes .htaccess only working as hash but nowhere else

I have a website domain.com for example. I have backbone.js with pushstate and fallback and when I goto domain.com/about it loads up the index.html page and pushstates to about. everything is ...
0
votes
1answer
207 views

PJAX Header in Django

I'm trying to pjaxify some of my views with jQuery-pjax and django-pjax. As I understand it, every pjax request sends an additional header X-PJAX: True. However, I can't find it anywhere even when (I ...
1
vote
2answers
191 views

Backbone.history: deep urls are not falling backing properly in IE

In my single-page backbone app, I'm having trouble getting my longer urls to route properly in IE. Any urls that are nested more than one level, don't receive the proper hash fallbak when loading them ...
6
votes
2answers
343 views

Javascript framework for pushstate “hijax”

All our apps are php mvc and with a very simple js behavioral layer on top at the client side. We want to structure the javascript more and stop requesting "snippets" to execute simple behaviour ...

1 2 3 4 5