On Sun, Jan 3, 2010 at 11:51 PM, killer barney <[email protected]> wrote:
> Is there any way of accessing the anchor tags in the python code > behind? > > For example: http://www.google.com/#q=search > > It seems like no data is stored in the request object regarding what > anchors are in the url. I'm using django on top of app engine, in > case that changes anything. > The fragment identifier isn't actually sent server side in a HTTP request; it's purely for client side enhancements, like jumping to an element in the page, or reading/writing it in JavaScript to store state. http://en.wikipedia.org/wiki/Fragment_identifier#Processing -- Matt McDonald -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
