So I have this jquery script (thanks to a previous member right here) that takes the email or any other query string from the url and populates the value of the respective input fields on the page...
So... the form input is something like:
<input type="text" name="email" >
And the script is...
$(function () {
//grabs the entire query string
var query = document.location.search.replace('?', '');
//extracts each field/value pair
query = query.split('&');
//runs through each pair
for (var i = 0; i < query.length; i++) {
//splits up the field/value pair into an array
var field = query[i].split("=");
//targets the field and assign its value
$("input[name='" + field[0] + "'], select[name='" + field[0] + "']").val(field[1]);
}
THE PROBLEM: The url is encoded like this...
/?email=some%40email
So in my code, how can I decode the '%40' back to '@' before it populates the values in the input fields? Any guidance?
So I have this jquery script (thanks to a previous member right here) that takes the email or any other query string from the url and populates the value of the respective input fields on the page...
So... the form input is something like:
<input type="text" name="email" >
And the script is...
$(function () {
//grabs the entire query string
var query = document.location.search.replace('?', '');
//extracts each field/value pair
query = query.split('&');
//runs through each pair
for (var i = 0; i < query.length; i++) {
//splits up the field/value pair into an array
var field = query[i].split("=");
//targets the field and assign its value
$("input[name='" + field[0] + "'], select[name='" + field[0] + "']").val(field[1]);
}
THE PROBLEM: The url is encoded like this...
http://www.example./?email=some%40email.
So in my code, how can I decode the '%40' back to '@' before it populates the values in the input fields? Any guidance?
Share Improve this question asked Aug 4, 2015 at 7:54 AmodAmod 2838 silver badges20 bronze badges2 Answers
Reset to default 11You can use plain javascript
decodeURIComponent('some%40email.')
decodeURIComponent('@')
decodeURIComponent('%40')