I'm using jQuery.ajax to extract form data from a page, and send it to my database (via another PHP page).
The form information is collected by:
var X=$('#div1').val();
var Y=$('#div2').val();
This is used to build the POST string, i.e.
var data='varx='+X+'&vary='+Y;
Obviously this is problematic if an ampersand character is used. What is the best method to escape the variables, particularly so that the user can safely use an ampersand (&) ?
Thanks!