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 ?
decodeURIComponent("%3Ctest%3E");gives"<test>". You need to show more code, but I'd echo the earlier commenters. Usejson_encodeif you are trying to make a string safe for insertion in a<script>element. – Quentin Sep 13 '12 at 21:17