Hi, I'm doing this:
$.ajax({
type: "POST", url: baseURL+"sys/formTipi_azioni",data:"az_tipo="+azione,
beforeSend: function(){$("#form").html('<p><img src="'+baseURL+'lib/img/ajax-loader.gif" width="16" height="16" alt="loading" /><p>');},
success: function(html){$("#form").html(html);}
});
there is a case when azione is
TB+
the plus sign doesn't get POSTed at all, a blank space get sent. I already tried this:
azione = escape(String(azione));
With no luck. Does anybody knows how to fix this?
Thank you