$.ajax({
type:"post",
url:"url",
data:data,
processData:false, // data
contentType:false, //
success:function(){},
error:function(){}
})
is there any way to transfer hexadecimal strings to the server?
Note: do not convert each character to an acsll code value and then convert the code value to hexadecimal.
ask for advice!