I want to add hash to my URL. For example
http://somesite.com/somesubdomain#p1=1&p2=2&p3=3
when I try to do this, all I get is:
http://somesite.com/somesubdomain#p1=1%23p2=2%23p3=3
So, in short, how to I add special characters in my URL hash.
EDIT:
I am using YUI browser history manager.
var hash = "p1=1&p2=2&p3=3"
YAHOO.util.History.navigate("state",hash);