REST API Integration with jQuery — a practical guide to jQuery REST API with clear examples you can reuse in real projects.
jQuery Tutorial Series (72/101). Prefer one article? Read the complete jQuery tutorial.
Short description
Map GET/POST/PUT/PATCH/DELETE to your UI actions.
REST tip
$.ajax({ url: '/api/items/5', method: 'DELETE' });
$.ajax({
url: '/api/items/5',
method: 'PUT',
contentType: 'application/json',
data: JSON.stringify({ name: 'Updated' })
});