Does anyone know a good alternative to xmlHttpReq (post method) that works with all UTF-8 characters?
For example, if you input this ال
in this demo http://www.degraeve.com/reference/simple-ajax-example.php it will not work. However, if I use formdata new FormData(document.forms[0])
it works, but this method is not compatible with all browsers.
I'm looking for an all-round solution ? I'm currently using the same method as in the demo (link). It would be even better if I can change something in that script.