I noticed that certain characters entered in text box and sent through Jquery Ajax request as parms are being mis-interpretted. (at least from my point of view). The "&" creates a new unwanted parm. The "+" disappears entirely.
I want to get value of text box and convert to html entities. Something like this I think:
SafeParm = $("#myDIV").val().html();
Any other recommendations for making for making safe ajax calls with jQuery are welcome.