Question

In my search option I redirect my URL to

window.location = '/admin/#q='+value+'&type='+type;

Now I want to take the value of q & type from URL

P.s. due to my url-rewrite rule I can't use ? instead of #

No correct solution

OTHER TIPS

Use javascript split('&') on window.location.hash to separate the key/value pairs, then split('=') to separate key from value, check if key=='type'.

You can obtain and modify the value after the # via window.location.hash. Note that depending on the browser there may or may not be a leading # sign.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top