Good day. Using Ajax using the POST method, I send the value "+7 (913) 789-11-11"
$.ajax({ type: "post", url: "/aj.php", data: "name="+m_data, }).done(function( result ) { alert ('good'); }).fail(function(result) { alert ('bad'); }); But for some reason only 7 (913) 789-11-11 comes, i.e. the "+" symbol does not come. Please tell me how to solve this problem.
data:m_datacomes with a plus? - Sergiks