add parameters ajax request

Solutions on MaxInterview for add parameters ajax request by the best coders in the world

showing results for - "add parameters ajax request"
Valentín
22 Nov 2020
1$.ajax({
2    type: 'POST',
3    url: '/test',
4    data: { abc: 123 },
5    success: function(resp) { }
6});