Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
js deep linking
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  7 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Matt S.  
View profile  
 More options Sep 13 2012, 9:29 am
From: "Matt S." <mattsp...@gmail.com>
Date: Thu, 13 Sep 2012 09:23:07 -0400
Local: Thurs, Sep 13 2012 9:23 am
Subject: js deep linking

what do you guys use for JS/Jquery deep linking? I'm using JSAddress but
having some issues with it not updating the address bar. Within Jquery the
listeners are recognizing the changes and acting accordingly, it's just not
updating the address bar. Anyone had luck with this or other solutions?

thanks,

matt


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tyler Larson  
View profile  
 More options Sep 13 2012, 10:33 am
From: Tyler Larson <tallty...@gmail.com>
Date: Thu, 13 Sep 2012 10:33:16 -0400
Local: Thurs, Sep 13 2012 10:33 am
Subject: Re: [FlashCodersNY] js deep linking

Both of these work quite well
https://github.com/cowboy/jquery-hashchange
http://sammyjs.org/

On Sep 13, 2012, at 9:23 AM, "Matt S." <mattsp...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Matt S.  
View profile  
 More options Sep 13 2012, 11:07 am
From: "Matt S." <mattsp...@gmail.com>
Date: Thu, 13 Sep 2012 11:07:00 -0400
Subject: Re: [FlashCodersNY] js deep linking

thanks Tyler!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Newman  
View profile  
 More options Sep 13 2012, 6:21 pm
From: Kevin Newman <Capta...@unFocus.com>
Date: Thu, 13 Sep 2012 18:21:13 -0400
Local: Thurs, Sep 13 2012 6:21 pm
Subject: Re: [FlashCodersNY] js deep linking
I still use HistoryKeeper sometimes (only because I wrote it a long time
ago ;-) ) - or one time I used jQuery BBQ.

In a newer project I actually just used pushState (client only cared
about her iPad), which doesn't use hashes, and generally works a lot
better than the hash behavior, which remains broken in some problematic
edge cases in the various browsers (even with the hash change event).

Kevin N.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christopher  
View profile  
 More options Sep 14 2012, 12:29 am
From: Christopher <damassi.pap...@gmail.com>
Date: Thu, 13 Sep 2012 21:29:27 -0700 (PDT)
Local: Fri, Sep 14 2012 12:29 am
Subject: Re: js deep linking

I've found backbone.js to be the best manager for deeplinking out of all
the possibles i've tried; it's also the simplest:

var router = Backbone.Router.extend({
     routes: {
           "routeA": "callbackFunctionA",
           "routeB": "callbackFunctionB",
     },

     callbackFunctionA: function() {
          console.log('working');
     },

     callbackFunctionB: function() {
          console.log('working');
     }

});

Backbone.history.start();


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevin Newman  
View profile  
 More options Sep 14 2012, 10:09 am
From: Kevin Newman <Capta...@unFocus.com>
Date: Fri, 14 Sep 2012 10:09:22 -0400
Local: Fri, Sep 14 2012 10:09 am
Subject: Re: [FlashCodersNY] Re: js deep linking
That's a good point. I've been using Backbone.js for some JS work, but
haven't tried it yet for a Flash app. It supports pushState too, with
just a switch.

Kevin N.

On 9/14/12 12:29 AM, Christopher wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
eric socolofsky  
View profile  
 More options Sep 14 2012, 2:57 pm
From: eric socolofsky <e...@transmote.com>
Date: Fri, 14 Sep 2012 11:57:04 -0700
Local: Fri, Sep 14 2012 2:57 pm
Subject: Re: js deep linking

i was using BBQ but then realized that History.js + mod_rewrite (apache) is a much better solution for SEO, since it doesn't use hashes.  it's definitely more of a pain to set up, but once you get it humming it gives you nice, clean, human- and spider-friendly urls.

see github.com for an example in action.

i'll try to post a writeup of how i got it running, since i had a lot of trouble finding a good all-in-one resource for this on the webs...

On Sep 13, 2012, at 9:03 PM, flashcodersny@googlegroups.com wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »