Reputation: 628
When i try to send cyrillic characters as get params
They are transformed into that
What am I doing wrong?
Upvotes: 0
Views: 472
Reputation: 795
That's normal, use decodeURIComponent()
to decode the url paramaters
http://www.w3schools.com/jsref/jsref_decodeuricomponent.asp
Upvotes: 1