Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a string passed from php script to jquery script encoded with rawurlencode():

$str = '<test>';
echo rawurlencode($str);

and i'm trying to decode it with decodeURIComponent:

var decoded = decodeURIComponent(str);

finally i'm getting "%3Ctest%3E" anyway. (I have tried urlencode() with the same result aswell.) What am i doing wrong ?

share|improve this question
Why are you urlencoding HTML? – Juan Mendes Sep 13 '12 at 21:14
You don't need to urlencode it. Why are you? – Xeon06 Sep 13 '12 at 21:15
1  
decodeURIComponent("%3Ctest%3E"); gives "<test>". You need to show more code, but I'd echo the earlier commenters. Use json_encode if you are trying to make a string safe for insertion in a <script> element. – Quentin Sep 13 '12 at 21:17
i'm build a table in a php script from mysql requests to put into jquery ui tabs page later – Serg Sep 13 '12 at 21:20

1 Answer

PHP side :

$str = htmlentities('<test>');
header("Content-type: application/json");
echo json_encode($str);

Javascript side :

var decoded = JSON.parse(answer);
$('#ui-tabs-1').append(decoded);

In such a way, you'll be able to pass arrays or objects from PHP to your JS code too.

More info here

share|improve this answer
var decoded = JSON.parse(answer); $('#ui-tabs-1').append(decoded); shows """". firebug shows response "test". – Serg Sep 13 '12 at 21:24
hmm, echo json_encode(htmlentities($str)); may work if you want to insert result to the dom. – Ninsuo Sep 13 '12 at 21:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.