encodeURIComponent is a core JavaScript function that escapes special characters in strings so that they can be safely used in URIs as components of query strings or hashes.
0
votes
0answers
25 views
encodeURIcomponent while constructing mailto link
When i use encodeURIComponent to encode the body as shown below, and if the body has spaces in it, the resulting link is broken and appears as follows :
...
0
votes
0answers
48 views
Retrieving Encoded Email in URL using Regex
I am trying to retrieve an email in a url using regex in django. I have passed the email using javascript:
var email = foo@bar.net
var base_location = 'http://foo.org/bar/'
var encoded_uri = ...
1
vote
1answer
57 views
What characters can come out of encodeURIComponent()?
Since javascript's encodeURIComponent() encodes everything except
(alphabetic)
(decimal digits)
-
_
.
!
~
*
'
(
)
and encodes these into strings of the format %{digits}
Is it true to say that ...
0
votes
1answer
136 views
CodeIgniter disallowed characters using QUERY_STRING uri protocol
I've been working on a project and been testing it on localhost as well as on a free web server, and it has worked perfectly. However when I got my own domain and web hosting service the site stopped ...
0
votes
1answer
124 views
encodeURIComponent not working in select list
I'm trying to make a function that puts some elements in a select list if these elements are not in it already. My header is set for an ISO encoding, but if my "subject" contains a currency symbol ...
0
votes
0answers
105 views
Use encodeURIComponent with JSP
I'm filling a select list with a JSP code:
<c:forEach items="${listCategory2}" var="triplet">
<option value="<c:out value="${triplet.SSubject.getEntitled(lang)}" />"><c:out ...
1
vote
1answer
109 views
encodeURIComponent doesn't give me the desired output
I'm creating an app which screen scrapes a site with the help of user input (street, city). However, a street or a city could have the characters 'å', 'ä' and 'ö', which needs to be encoded.
I've ...
2
votes
1answer
130 views
empty string + null = “null”?
I came across an odd occurrence today while troubleshooting a rogue AJAX request in our application. We send data back to the server, using jQuery.param to build the request string.
In one scenario, ...
0
votes
2answers
93 views
Encode url by Javascript
Friends, I am currently using the below function to encode my data and send them through GET method... I am using ajax to send and php to receive them...
function urlencode(a){
...
3
votes
1answer
2k views
how to export csv file with filename
I want to export the exist data into csv file. I try to use this code:
var uriContent = "data:text/csv;charset=utf-8," + encodeURIComponent(data);
var myWindow = window.open(uriContent);
...
0
votes
0answers
156 views
how to get the value of encodeURIComponent
This is a script from my jsignature code
i want to get the image data and pass it as a php value to be sent as an pdf email
but i don't know how to put the output of the code to be included in the ...
1
vote
2answers
381 views
encodeURIComponent() and UTF-8 when sending Form textarea via AJAX
I am sending data to a PHP backend file via AJAX method POST. The data comes from a textarea, whose form has the next atribbute accept-charset="UTF-8".
The AJAX function sends data as ...
1
vote
1answer
180 views
jQuery Ajax call with escaped characters in Uri
I am making an Ajax call via jQuery to a GET service method. The problem is that the values for the parameter used can include the "/" character, so I decided to escape the special characters from the ...
0
votes
2answers
390 views
Double encode for JSON
In most of my AJAX functions I have to double encode free text entered by a user, i.e. I have to do encodeURIComponent(encodeURIComponent(myString)).
If I do it just once most symbols except double ...
0
votes
4answers
180 views
Javascript encodeURIComponent issue on redirection
I've a search box works with jquery and php, when you type something in to this search box jquery prepares a query and redirects location. Preparing query part works good but redirection part has a ...
2
votes
3answers
1k views
javascript encodeURIComponent and converting spaces to + symbols
I would like to encode my URL, but I want to convert spaces to plus symbols.
This is what I attempted to do...
var search = "Testing this here &";
encodeURIComponent(search.replace(/ /gi,"+"));
...
3
votes
2answers
549 views
What is the correct way to encodeURIcomponent non utf-8 characters and decodes them accordingly?
I have a Javascript bookmarklet that uses encodeURIcomponent to pass the URL of the current page to the server side, and then use urldecode on the server side to get the characters back.
The problem ...
8
votes
3answers
2k views
url-Encode vs Base64 encoding ( usages)?
I was wondering...
(except the issue with the base64's plus'+' sign in query string - which is translated to 'space' and can be solved by %2b) :---> which is the preferred way to transfer data in ...
0
votes
1answer
420 views
Using encodeURIcomponent and decoding it on server side
I sent a url as a part of request parameter by using encodeURIcomponent to server like
...
0
votes
0answers
301 views
® and ¢Ã¢ for TM when storing Cookie jquery encodeURIComponent
I'm having issues with a encoder in copyright and trademark symbols.
I am then storing in DQ® Cakes in a cookie which then parses it back as this when getting it back and as well doing Bright ...
0
votes
1answer
309 views
Passing large encoded text from javascript (ajax) to a php file
I have a JavaScript variable which contains a large text string - containing latex + HTML code. I want to encode this and pass it to a PHP page, where it can be decoded and acted upon by the PHP ...
2
votes
1answer
371 views
How do I apply encodeURIComponent() before submit?
I'm trying to apply encodeURIComponent() to the data before submitting it to the server.
I've tried :
submitdata: function (value, settings) {
return {
value: encodeURIComponent(value)
...
0
votes
1answer
3k views
How to encode URL parameters?
I am trying to pass parameters to a URL which looks like this:
http://www.foobar.com/foo?imageurl=
and I want to pass the parameters suchas and image URL which is generated itself by another API, ...
0
votes
1answer
323 views
url decoding in asp.net
I have a form in asp.net with a few textboxes. I'm trying to post the values in them to the server using jquery ajax, but having problems. I'm using javascript encodeURIComponent for the values of the ...
3
votes
2answers
384 views
How to properly handle UTF-8 in PHP?
I'm trying to get our chat system to support UTF-8, but I'm failing. If, on the client side, I send the following message, passed through encodeURIComponent:
îûôó
And put this on the PHP end:
...
1
vote
0answers
2k views
Setting filename using encodeURIComponent() to let user download data file
Alright, so I have this webpage page that gets its data using AJAX requests (in javascript using JQuery). Once the data has been loaded on to the users browser I want to let them download said data ...
2
votes
0answers
718 views
encodeURIComponent behaves differently in browsers for china as location
i have an interesting problem in hand that involves chinese..
i use google custom search and append searched keywords as below..
...
0
votes
0answers
2k views
encodeURIComponent in c sharp
I've tried to use HttpUtility.UrlEncode in order to simulate the javscript's encodeURIComponent, but had some issues (instead of getting "%20" i got "+")
then I've replaced the string, but i see that ...
0
votes
4answers
2k views
how can I javascript decodeURI in PHP?
I have a javascript which sends some specific information to a PHP api . Before to send it performs encodeURI . How can I "decode" it in PHP ? I understand that urldecode/urlencode is different that ...
0
votes
1answer
369 views
php+ajax+javascript: encodeURIComponent cuts my text when sending to the server
This is my first question... I hope my problem doesn't look stupid...
html (any symbols are allowed) ---> javascript event ---> javascript function sends text to .php file using ajax method.
Here ...
0
votes
5answers
72 views
Exempting characters in an escaped string
I have a little function that makes URL arguments out of an object:
function MkArgs(o) {
var ret = '?';
for (var i in o) {
ret += i + '=' + escape(o[i]) + '&';
}
return ...
1
vote
1answer
730 views
NodeJS encodeURI produces wrong result for ß
I am using Javascript's encodeURI / encodeURIComponent to encode a string containing the german "ß"-letter.
Unfortunately nodejs encodes ß as %EF%BF%BD and not like for example Firefox does: %C3%9F
...
0
votes
2answers
108 views
JS encodeURIComponenet not working
I have an incoming message hitting my XSL page. On this XSL page I have javascript to catch it and place the items in the appropriate places.
There is the possibility that these messages can have ...
0
votes
1answer
464 views
EncodeURIComponent throwing “Object doesn't support this property or method” Error (IE 8)
The following line is throwing a Object doesn't support this property or method" Error on IE 8.0.6 on Windows XP. I've looked into the encodeURIComponent method and I've been unable to find anyone ...
2
votes
1answer
219 views
Encoding GBK2312 Condundrum
I am an amateur coder and I have a small problem.
My goal is to have one text input with two buttons.
The first button uses a bit of
Javascript called SundayMorning to
translate the text (to ...
0
votes
2answers
2k views
decodeURIComponent(uri) is not working?
I'm using Ajax to post contents, and I'm using http.send(encodeURIComponent(params)); for encoding ... but I'm unable to decode them in PHP. I'm using POST so I didn't think it required encode? I'm ...
1
vote
1answer
212 views
encodeURIComponent and mysql_real_escape_string
I would like to ask you if it's necessary to use a mysql_real_escape_string() PHP function for data that I send into my DB in PHP ajax file if the data is encoded in my JS file using ...
0
votes
1answer
123 views
How efficient is encodeURIComponent?
How efficient is the encodeURIComponent implementations in major browsers? Is it worth memoizing calls to encodeURIComponent?
4
votes
2answers
2k views
Firefox automatically decoding encoded parameter in url, does not happen in IE
I am having frustration between Firefox and IE, well mostly Firefox as it is automatically decoding a parameter in the hash before I can work with it in Javascript. IE does not automatically decode ...
0
votes
2answers
359 views
encodeURIComponent and urldecode removes slashes, why?
Hello
I am using JSON.stringify for an array of arrays, and it returns this:
'[
["<span pt=\"7.5\" idfont=\"Humnst777 Cn BT-Bold\">Javelin</span>","0","0"],
["<span ...
3
votes
2answers
452 views
how do I properly encode a URL in JavaScript?
I am working on a browser plugin that takes the URL of the current page or any selected link as a parameter and send it to our server.
When characters of the basic latin alphabet are present in the ...
1
vote
2answers
5k views
jQuery encodeURI for href not working
I'm having problems encoding a string so I can place a variable into a link. I'm sure this is really simple, but i had trouble turning anything up.
$("a.inquiry").attr("href", "/inquiry/6933/text=" ...
2
votes
1answer
723 views
Handling of Japanese with Jquery.serialize();
Hoo boy. A weird one I guess!
getting input from a form, I want to make sure there are no western characters, punctuation or numbers before sending it to a php script for creating some xml...
from ...
0
votes
2answers
3k views
JS encodeURIComponent result different from the one created by FORM
I thought values entered in forms are properly encoded by browsers.
But this simple test file "test_get_vs_encodeuri.html" shows it's not true:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 ...
2
votes
2answers
1k views
encodeURIComponent is really useful?
Something I still don't understand when perfoming an http-get request to the server is what the advantage is in using JS fucntion encodeURIcomponent to encode each component of the http-get.
Doing ...
3
votes
4answers
479 views
∞ gets converted to ∞ when inserted into MySQL table
The infinity (∞) symbol gets converted to ∞ when it is inserted into my MySQL table by a PHP script, but if I insert it directly from phpMyAdmin, it inserts correctly. The symbol is passed to the ...
27
votes
4answers
11k views
What is the equivalent of JavaScript's encodeURIcomponent in PHP?
What is the equivalent of JavaScript's encodeURIcomponent in PHP?
3
votes
2answers
3k views
Trouble encoding a u umlaut with in a .Net http handler
I have a JavaScript request going to a ASP.Net (2.0) HTTP handler which passes the request to a java web service. In this system special characters, such as those with an accent do not get passed on ...



