Tagged Questions

This tag is in relation to javascript's window.onhashchange event.

learn more… | top users | synonyms

157
votes
13answers
99k views

What is the best back button jQuery plugin?

I have found two plugins that enable the browser's back button to work across ajax interactions, but I can't determine which is better and why. The two plugins are history_remote and the history. ...
103
votes
11answers
95k views

How do I, with JavaScript, change the URL in the browser without loading the new page?

How would I have a JavaScript action that may have some effects on the current page but would also change the URL in the browser so if the user hits reload or bookmark the new URL is used? It would ...
89
votes
12answers
60k views

On - window.location.hash - change?

I am using Ajax and hash for navigation. Is there a way to check if the window.location.hash changed like this? http://example.com/blah#123 to http://example.com/blah#456 It works if I check it when ...
28
votes
9answers
35k views

Detecting Back Button/Hash Change in URL

I just set up my new homepage at http://ritter.vg. I'm using jQuery, but very minimally. It loads all the pages using AJAX - I have it set up to allow bookmarking by detecting the hash in the URL. ...
22
votes
7answers
4k views

How to show Ajax requests in URL?

What I want is to have links which change a part of the page , and a dynamic URL for it, where I can specify variables such like #calendar=10_2010tabview=tab2 Check this for an exact example: CLICK ...
19
votes
6answers
8k views

Handle URL anchor change event in js

How can I write the JavaScript callback code that will be executed on any changes in the URL anchor? For example from http://example.com#a to http://example.com#b
8
votes
5answers
2k views

What's the best library to do a URL hash/history in JQuery?

I've been looking around JQuery libraries for the URL hash, but found none that were good. There is the "history plugin", but we all know it's buggy and isn't flexible. I am loading my pages inside a ...
6
votes
1answer
2k views

Disable the hash change controller in JQuery mobile UI and replace with backbone.js

I'm using JQuery Mobile UI and the widgit kit is nice. However I'm also using backbone.js which comes with a really neat hashchange controller framework. Problem is that JQuery Mobile UI has an ...
5
votes
4answers
3k views

Backbone.js cause bug only in IE7

I'm developping a web app with CodeIgniter on back-end and Backbone.js on front-end. I'm also using HTML5 Boilerplate as my start template. I'm using Backbone's Controller and History as main ...
5
votes
2answers
950 views

Onhashchange with browser buttons only

I've got this issue (I'm using jQuery but I'm not restricted to it): I'm using a combo of Anchor navigation (#id) and Ajax requests. To get the pages to move into place (using anchor navigation) or ...
4
votes
1answer
76 views

IE makes extra GET-request on hash change

When I make an XMLHttpRequest, I also change window.location.hash. For example, mysite.com/gallery/q#1 becomes mysite.com/gallery/q#2. When this happens, IE8, as Fiddler and nginx logs show, makes ...
4
votes
6answers
10k views

jquery - hash change event

I am using: $(window).bind( 'hashchange', function(e) { }); to bind a function to the hash change event. This seems to work in IE8,firefox, and chrome but not in safari and I assume not in earlier ...
4
votes
6answers
3k views

JavaScript/jQuery - onhashchange event workaround

Until all browsers support the onhashchange event what is the best workaround for this? Is there something for this in jQuery? or as a plug-in?
4
votes
2answers
3k views

jquery ajax history and bookmarking plugin

There are plugins for handling history and bookmarking like: http://plugins.jquery.com/project/history. Somehow it doesn't look as a complete solution. For example, on one page you might have a filter ...
4
votes
3answers
7k views

jquery history plugin

I am using this plugin: http://plugins.jquery.com/project/history on this page: http://www.crtaci.info/index.php?autocom=majice I dont know why but it seems i cant figure out what to do to get ...
4
votes
3answers
919 views

Experiences with Javascript History Frameworks

I'm seeking a javascript history framework to handle navigation inside a page when the user selects multiple options which change the page behaviour. There are multiple artefacts on the page that ...
4
votes
4answers
3k views

Enabling back/fwd key events for an Ajax Application

I have an application which works heavily on AJAX. However I want to have navigation functionalities in it. To spoof the url, I am changing the location.hash, to generate URL. But if i use back/fwd, ...
4
votes
8answers
3k views

How to keep the browser history in sync when using Ajax?

I'm writing a simple photo album app using ASP.NET Ajax. The app uses async Ajax calls to pre-load the next photo in the album, without changing the URL in the browser. The problem is that when the ...
3
votes
4answers
2k views

Javascript : onHashchange Test

I'm trying to check if the browser supports onHashChange or not to hide some code from it if not, in this way: if(window.onhashchange){ ...code... } else { ...other code... } I tried this ...
3
votes
2answers
499 views

When using Ajax History and Bookmark, is it always good to use “#!” instead of just “#”?

Facebook is doing Ajax History (Back and Forward button) and Bookmark using #! instead of just # in the URL. Is it always a good idea to do that, because I was thinking that a usual anchor could ...
2
votes
3answers
78 views

Can the PHP $_GET be used to get a variable in the URL using Hashchange?

<a href="#create=1">Click Me</a> <script src="https://raw.github.com/cowboy/jquery-hashchange/v1.3/jquery.ba- hashchange.js"></script> <script ...
2
votes
1answer
274 views

Hashchange events with the Back Button in the Backbone Router/History

I'm using the following system configuration: Chromium 14.0.835.202 on Ubuntu 11.04 using Backbone 0.5.3 A Backbone Router with the following routes and callbacks defined: , routes: { ...
2
votes
1answer
177 views

load content via hashchange + jquery based on file name not in hash

I am using jquery + the hashchange plugin from ben alman. Below is a standard way to grab the hash name and load in content $(window).hashchange(function() { var hash = location.hash; var array_url ...
2
votes
3answers
410 views

Javascript/jQuery detect hash change only on browser back/forward button click

Is it possible to detect the hashchange only on a browser history change (i.e. Back or Forward button)? I have seen the onBeforeUnload event, but this event does not fire on hash change, as the ...
2
votes
1answer
141 views

Hash change event in ajax (javascript)

I am actually trying to enable user to bookmark pages and for this, i am using hash change event of javascript. Here is my code: <script type="text/javascript"> function hashchk() { ...
2
votes
3answers
61 views

jQuery when pointed to a link should show a div that's hidden by default

I have a page where there are a few divs hidden by default. I would like to be able to point users to a link where it would show the divs. ex. https://app.emailsmsmarketing.com/login Users are able ...
2
votes
1answer
444 views

binding hashchange event in IE7 issue

I am experiencing some issues binding to the hashchange event in Internet Explorer 7. All other versions of Internet Explorer - ie. 8 & 9 work without issue. My code is: ...
2
votes
2answers
248 views

IE 8 shows raw ajax response on page reloading with jQuery BBQ

I use Ben Almans's jQuery BBQ and jQuery hashchange plugins on pagination links. Both work as expected in Opera and Firefox but do not in IE 8 (surprised, huh?). IE also works good with ajax, back ...
2
votes
2answers
362 views

pros/cons of hash navigation from SEO perspective

I'm working on an application that implements navigation based on hashchange events. Content is mostly loaded through ajax calls after hash changes (and displayed by DOM injections). From a SEO ...
2
votes
1answer
204 views

Notes on CSS Issue in IE7/8 & Hashchange plugin

http://iamwhitebox.com/staging/arkitek/#press/index.htm http://iamwhitebox.com/staging/arkitek/#contact/index.htm why are these floats breaking in IE? and also, does anyone have any experience with ...
2
votes
2answers
473 views

DOMNodeInserted or hashchange

I am trying to write a JavaScript script that is "overlayed" on top of a Facebook page. It uses DOMContentLoaded to detect when content is loaded, then adds some extra stuff in. However, because ...
2
votes
2answers
334 views

JavaScript .hashchange performance. Can it bring any slowdown?

jQuery hashchange event For me it looks like most mature solution right now(please correct me if I'm wrong). I really like this plugin for manipulating with browsers hashes. It simplifies js code a ...
2
votes
3answers
5k views

jQuery “window.location.hash” - getting hash too late?

I'm working on some script but it have a serious problem with hashes. I have a list of link-images like: <a href="#1"><img src="1.jpg" /></a> <a href="#1"><img src="2.jpg" ...
2
votes
5answers
413 views

How to “bookmark” page or content fetched using AJAX?

How to "bookmark" page or content fetched using AJAX? It looks like it can be easy if we just add the details to the "anchor", and then, use the routing or even in PHP code or Ruby on Rails's ...
1
vote
0answers
16 views

Making Ben Alman's code work for my site

I am using a ajax called pages and trying to make the browser's "back" and "forward" buttons work. I tried to use ben alman's plugin cause it seemed to be most popular but does not work for me at this ...
1
vote
0answers
59 views

Check if hash location was loaded, if so slideToggle maincontent area

I just want it to check if the current hash location anchor was clicked then perform slideToggle and dont reload the content and slideDown. Right now it slideUp load's the content and slideDown. ...
1
vote
1answer
118 views

Exception for hashchange function - browser history back?

I have no idea how I should even call this problem … the title of this question doesn't make any sense at all, I know! Following case: I have a single-page layout where users scroll downwards. I have ...
1
vote
1answer
85 views

Hashchange not firing when user clicks on same link

I'm creating an HTML and Javascript client for running in browser which talks to REST API. I'm using RouteMap to set my URLs. So I've kept a convention something like this ...
1
vote
2answers
72 views

jQuery hash changed wildcard

I'm currently building a dynamic website based on jQuery en hashChanged. Currently I use this code on document.ready: $(window).hashchange( function(){ switch(location.hash) { case ...
1
vote
2answers
199 views

$(window) bind hashchange how to check part hash changed?

I am studing Google Ajax Crawlable I use $(window) bind hashchange to control ajax page loading. my url like: domain.com/#!/keywords&num=1 there has two kind of change ...
1
vote
3answers
217 views

Is there any way to make Jquery BBQ Google Indexable?

I'm working on a Ajax powered web site and I decided to use Ben Alman's BBQ plug-in for hashchange event. http://benalman.com/projects/jquery-bbq-plugin/ But, with this plug-in, I can't make ...
1
vote
2answers
240 views

Jquery calling function on hashchange

Hi every one I have 2 questions I am using the hashchange plugin .... so I want to know would a function as below, be called everytime a hashchange occurs... because I have something like that in ...
1
vote
1answer
451 views

How to trigger different functions on hash change based on hash value with jQuery?

I'm using Ben Alman's jQuery hashChange event plugin. the hash part looks like this: #x=1&y=2&z=3 I already have functions that parse it getHashPart(key) and setHashPart(key). I would like ...
1
vote
1answer
1k views

jQuery LocalScroll + hashchange event browser compatibility issue

I'm building a site where I am using Ariel Fleslers jQuery LocalScroll plugin, which I want to do two things: 1) Animate a scroll to an anchor when a link is clicked 2) Scroll to the previously ...
1
vote
2answers
566 views

onhashchange with IE 9

I have the following code $(document).ready(function() { if ("onhashchange" in window) { alert("The browser supports the hashchange event!"); } function test(){ alert("hash has ...
1
vote
2answers
2k views

Cross-domain hash change communication

Please consider the following two domains: domain1.com and domain2. From domain1 I open an iframe that points to domain2. Now, I want these guys to communicate with each other, which I've ...
1
vote
2answers
714 views

Does onHashChange work in Safari?

Does onHashChange or hashChange work in Safari? I tested it with Safari 4.0.4 on Windows 7 and it doesn't work for me. If it doesn't work, is there any solution to track if the hash has changed?
1
vote
3answers
561 views

The best Ajax History and Bookmark plugin currently available [closed]

It seems that each Ajax History and Bookmark plugin has some minor bugs, ranging from Really Simple History http://code.google.com/p/reallysimplehistory/ jQuery History plugin ...
1
vote
3answers
896 views

jQuery History Plugin works in Chrome?

The jQuery History Plugin (http://www.mikage.to/jquery/jquery_history.html) is said to work with Chrome: http://github.com/tkyk/jquery-history-plugin Supported Browsers IE6, IE7, IE8, ...
1
vote
2answers
1k views

Stop loading of images on a hashchange event via JavaScript or jQuery

I am using the jQuery BBQ: Back Button & Query Library plugin to create a page that pulls in dynamic content when a link is clicked. When the link is clicked the hash is changed and new content is ...

1 2