Ajax url segments with jquery using AJAX crawling scheme -
i researching how approach loading content ajax web application
i notice twitter using google ajax crawling scheme: (http://code.google.com/web/ajaxcrawling/)
but instead of: http://twitter.com/who_to_follow#!key=value
they using like: http://twitter.com/#!/who_to_follow/suggestions
how handle segments instead of #key=value in ajax request jquery?
any help/advice appreciated jon
you can use dom window object load full hash fragment:
q = window.location.hash.substring(1); q contain on right side of hash. can split q on '/' , reference result partitions array. there code examples here: http://goo.gl/0lj0j
Comments
Post a Comment