tags:

views:

3

answers:

0

Hi I'm using

loader.addEventListener(air.HTTPStatusEvent.HTTP_RESPONSE_STATUS, onLogin); function onLogin(e) { air.trace(e.responseURL); }

to get the URL to which URLRequest goes after redirection, but all it returns is http://domain/redir.html and missing hash data which has some important information.

hxxp://domain/redir.html#{id:val}

How do I get the string after hash?

related questions