I have form which data will be sent via ajax. It is normal string-type content from textarea. But i don’t know how can i tell jquery that i want sent this words as data.
$.ajax({
type: 'POST',
url: url,
data: data,
success: success,
dataType: dataType
});
Could someone can give me any tips?
1 Answer