I'd like to redirect a page with javascript using the following code:
var s = 'http://blahblah/' + encodeURIComponent(something);
alert(s);
window.location.href = s;
The alert shows the correct encoded url but when I pass it to window.locaion.href, it redirects the page to the unencoded url which is wrong. How could I do it properly? Thanks
I'd like to redirect a page with javascript using the following code:
var s = 'http://blahblah/' + encodeURIComponent(something);
alert(s);
window.location.href = s;
The alert shows the correct encoded url but when I pass it to window.locaion.href, it redirects the page to the unencoded url which is wrong. How could I do it properly? Thanks
Share Improve this question asked Feb 21, 2014 at 14:38 user1213679user1213679 2691 gold badge4 silver badges12 bronze badges 5- it's working fine at my side. – Suman Bogati Commented Feb 21, 2014 at 14:43
- For me it's fine with chrome but not with firefox. – Needpoule Commented Feb 21, 2014 at 14:43
- For me its working in both browsers. – Suman Bogati Commented Feb 21, 2014 at 14:49
- 1 Actually it's working on both. But firefox shows the unencoded url in the url bar. – Needpoule Commented Feb 21, 2014 at 14:50
- Sounds like a versions issue! For interest's sake could you tell us what versions of what browser did not work for you? – taddy hoops Commented Apr 11, 2014 at 8:36
1 Answer
Reset to default 6This could be related to (a) using firefox or (b) specific APIs that you're feeding encodedComponent
into, like Google search.
Here's one tested solution on Firefox-stable:
var clearComponent = 'flowers for my boyfriend & husband on valentines';
var encodedComponent = encodeURIComponent(clearComponent);
var googleSafeComponent = encodedComponent.replace(/%20/g,'+'); // replaces spaces with plus signs for Google and similar APIs
var pleteURI = 'http://google./?q=' + googleSafeComponent;
window.location = pleteURI;
Or all in one line:
window.location = 'http://google./?q=' + encodeURIComponent('flowers for my boyfriend & husband on valentines').replace(/%20/g,'+');
window.location
implies window.location.href
so you can save some letters. ;)