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?
> 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 received this message because you are subscribed to the Google Groups "FlashCodersNY" group.
> To post to this group, send email to flashcodersny@googlegroups.com.
> To unsubscribe from this group, send email to flashcodersny+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/flashcodersny?hl=en.
> On Sep 13, 2012, at 9:23 AM, "Matt S." <mattsp...@gmail.com> wrote:
> 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 received this message because you are subscribed to the Google Groups
> "FlashCodersNY" group.
> To post to this group, send email to flashcodersny@googlegroups.com.
> To unsubscribe from this group, send email to
> flashcodersny+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/flashcodersny?hl=en.
> --
> You received this message because you are subscribed to the Google Groups
> "FlashCodersNY" group.
> To post to this group, send email to flashcodersny@googlegroups.com.
> To unsubscribe from this group, send email to
> flashcodersny+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/flashcodersny?hl=en.
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).
On Thursday, September 13, 2012 6:29:20 AM UTC-7, mspieg wrote:
> 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?
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.
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:
> js deep linking [4 Updates]
> js deep linking
> "Matt S." <mattsp...@gmail.com> Sep 13 09:23AM -0400
> 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?
> Kevin Newman <Capta...@unFocus.com> Sep 13 06:21PM -0400
> 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 received this message because you are subscribed to the Google Group flashcodersny.
> You can post via email.
> To unsubscribe from this group, send an empty message.
> For more options, visit this group.
> -- > You received this message because you are subscribed to the Google Groups "FlashCodersNY" group.
> To post to this group, send email to flashcodersny@googlegroups.com.
> To unsubscribe from this group, send email to flashcodersny+unsubscribe@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/flashcodersny?hl=en.