Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
304 views

jQuery Address, changing a parameter? (deep linking)

I'm using jQuery Address to perform deep linking in an ajax site. I have multiple arguments like this: /SomeController/SomeAction#/586?e=5808&tab=#First Q1: How do I change just the "tab" ...
2
votes
2answers
115 views

Using Google Analytics to track AJAX requests

I'm changing a big section of a website to use jQuery Address' deep linking AJAX features. I'm using URIs like mysite.com/#!/page1/subpage/ and so on. I've read a good bit about tracking traffic with ...
2
votes
3answers
286 views

Double remote call with jQuery Address plugin and Rails 3 remote links

I'm using this jQuery plugin http://www.asual.com/jquery/address/ because I have a full ajax site hacked in Rails 3.1.0 but my actions/methods also respond to html requests. so if I have a link ...
2
votes
3answers
348 views

Correct way to handle deep linking with jQuery Address

I'm using jQuery Address to handle deep linking with my AJAX application. My URLs are in the format: example.com/#/section/item/param/param/param... I have it setup with the .change() listener to ...
1
vote
3answers
90 views

Remove /#/ from beginning of deep link?

I'm using the jQuery Address plugin to do some dynamic address changes. So far I've got it to change the address bar to my page name but it adds a /#/ at the beginning. I've had a look through the ...
1
vote
1answer
66 views

Jquery Address problems in IE

I have problems with Jquery Address in IE 7 and 8. I did like that: <script> $.address.crawlable(false); $.address.state('/'); $.address.strict(false); $.address.parameter("param", ...
1
vote
0answers
50 views

jquery address and Iframes

Basically, Im trying to setup a page so that when a link is clicked it will open in the iframe but the url of the parent page will update with the hash but the url of the iframe will be the original ...
1
vote
1answer
49 views

jquery address in combination with “regular” anchor points

On this site we've implemented Jquery Address to remember and load ajax content correctly when using back/forward buttons in the browser. The problem have arisen with links that has regular anchor ...
1
vote
3answers
112 views

ASP.NET MVC: jQuery Address Prevent User from Navigating to Direct Url

We are developing an Ajax application and are utilizing the jQuery Address plugin to load the various pages of the application So the urls for our site look like: ...
1
vote
2answers
134 views

setting doc head title on jquery address with wordpress

I have a test wordpress blog with Ajax deeplinking. What I'd like to do is simply set a new head title when ajax load page or a post. either call it by the anchor tag attribute title or hash url ...
1
vote
4answers
107 views

Is there a way to unbind jquery.address?

How can I cancel jquery.address behavior? $('a').unbind(); // Doesn't work for me..
1
vote
1answer
119 views

how do i block jquery.address from changing the url in certain situations

i use jquery.address, a plugin to do browser history state when having an ajax heavy website. though, in a certain situation where a link would trigger the $.address.change() functions, this should be ...
1
vote
1answer
780 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
183 views

Does the jQuery Address plugin work if my hrefs are empty?

I've been using empty hrefs (href="#") and allowing a jQuery click event to get the data from my controller and display it in a partial view. However, I'd like to implement the jQuery Address plugin ...
1
vote
4answers
837 views

Why does the jQuery Asual Address plugin fire the change event twice?

Greetings, I'm using the jQuery Asual Address plugin: http://www.asual.com/jquery/address/ For some reason, in Firefox and IE (but not Chrome), the address change event is firing twice when one of ...
1
vote
3answers
610 views

Is Ajax Deep Linking possible without prepending hashes ('#') in links

Most of the jquery deep linking plugins I have seen required me to attach '#' to my links. This is an example: <a href="#page1.html">Page 1</a> Even twitter does this (however, twitter ...
0
votes
0answers
12 views

in jquery address plugin, after refreshing the page, changes to default url

I am doing following for changing the address in url $("ul.data li a").die('click'); $("ul.data li a").live('click', function() { $.address.value($(this).attr('rel')); ...
0
votes
1answer
18 views

jQuery address plugin, pathname change when using AJAX

I have a Wordpress blog at http://themes.visualise.ca/visualise and when a user clicks on a thumbnail the post is loaded with AJAX (using the jQuery address plugin) . I would like the URL to change at ...
0
votes
0answers
45 views

How do I get to #1 of html page using jQuery Address

I'm using asual jquery address plugin for page navigation. But I have a little problem. When I'm inserting mypage.html#first_paragraph address plugin recognize this as new page, not as "goto ...
0
votes
1answer
60 views

On back button, why does Firefox jump straight to my previous scroll positions rather than animating

Please visit the demo: http://96.0.13.132 Click around for awhile, now hit the back button. In webkit browsers, you are animated back to the previous "state" while in Firefox you jump back. Why is ...
0
votes
3answers
63 views

jQuery Address + $.ajax not displaying content

I'm trying to implement the jQuery Address plugin in my project. I'm following the Asual example of the Crawling implementation (i.e. hashbangs). My javascript: <script ...
0
votes
0answers
103 views

jQuery Address - Implementation on one-page accordion site

I am an entry level php programmer and slowly learning jQuery and javascript. I need some help understanding how to implement jQuery Address into a new site I'm working on. I've tried several ...
0
votes
1answer
49 views

Why does my index page disappear only in Safari?

I have tried everything I can think of to track down this issue but can't turn up anything. I'm using the jquery address plugin for my site. After I login to my site the user gets redirected to the ...
0
votes
1answer
71 views

jQuery address plugin - looking for a way to keep url 'fixed' but still have “back” button working

I have a need to keep the browser url fixed for a page doing ajax calls on user actions but still have the back button work. Deep linking is not a need....that can't work with a fixed url obviously I ...
0
votes
2answers
135 views

Unable to set correct href link in IE with jquery address

Using jquery address I'm setting my href links like so: <a href="#view_profile=123">view 123</a> When calling my address change event: $.address.change(function(e) { alert(e.value); ...
0
votes
2answers
237 views

jquery.address: $.address.change() runs twice when using $.address.queryString()

$.address.change() runs twice when using $.address.queryString() if have a url of: www.example.com and i run the following code: $.address.change(function(event) { ...
0
votes
0answers
220 views

Asual address plugin not working on page reload (chrome, safari)

the plugin will not scrollTo to the define anchor: $.address.externalChange(function(event){ one=event.value.split("/"); if(one[1]==""){ $.address.value("default"); } ...
0
votes
0answers
205 views

jQuery address (deep linking) with form

I'm trying to utilize deep linking (e.g. url.com/#/page) using jQuery address, among other things, and I'm experiencing some problems I was hoping to get some guidance with. The problem is with my ...
0
votes
2answers
156 views

Integrate a jQuery function into another in Tabs UI

I'm trying to integrate one function into another function and am puzzled. What I'm trying to do is add a jQuery function that will call a random quote, and I want that function to fire on a tab ...
0
votes
0answers
224 views

Do jQuery “back button” plugins work properly with modal dialog boxes?

I have a page with a couple of empty divs. When a user clicks on a link in a table, I have some jQuery code to hijack the click, send it to my controller's action, get the data back, put it in the ...
0
votes
0answers
501 views

Jquery Address State confusion

I built a simple deep linking page using Jquery address and following this example: http://www.asual.com/jquery/address/samples/state/ Now in this example, a HTML5 Browser (I use Chrome 10) shows ...
0
votes
1answer
301 views

JavaScript function breaking my deep link in jQuery Address crawling

Strange behavior of JavaScript with jQuery Address (plugin). I have this code: var handler = function(data) { $('#conteudo').hide().html($('#conteudo', data).html()).fadeIn(500); ...
0
votes
0answers
282 views

jQuery Address with inbox

Myself and my team are currently developing a user inbox within a dynamic website. The inbox navigates between messages and mailboxes using ajax in order to create a more responsive atmosphere. The ...
0
votes
1answer
337 views

jQuery Address difference in behavior for browser back button vs link to previous page

My problem is best described with this screencast I recorded: http://www.youtube.com/watch?v=aI-p_jqzOdU I'm using the jQuery Address plugin for Ajax deep-linking. For those who don't know how jQuery ...
0
votes
1answer
604 views

jquery address google analytics

I'm using the popular jquery address with an ajax app. I want google analytics to record path hash changes, as those are the equivalent of new pages for me. The address documentation mentions GA, but ...
0
votes
1answer
340 views

Plain old query string with jquery-address

i'm implementing deep linking for my website. I wonder, why jquery-address is unable just to set a query string, like this: www.mywebsite.com?search=keyword When i using ...
0
votes
1answer
467 views

Asp.net MVC with Ajax history (jquery address), how to load from the URL?

I am using asp.net mvc with ajax navigation. I use jquery address and I can change the address bar to be like "MYPage.Com/#/Url", but how can I invoke my route when the user enters that link? This ...
-1
votes
1answer
535 views

jQuery address plugin [closed]

I would like to learn the basics of this plugin: http://www.asual.com/jquery/address/ Can someone show me a very simple example of how it works (the very basic concept of it). Thanks.