---
title: "Ajax RequestAjax Request in Jquery"  
description: "Ajax RequestAjax Request in Jquery"  
author: "AVADHESH PATEL"  
published: 2012-12-06  
updated: 2020-09-20  
canonical: https://www.mindstick.com/interview/1588/ajax-requestajax-request-in-jquery  
category: "jquery"  
tags: ["jquery"]  
reading_time: 1 minute  

---

# Ajax RequestAjax Request in Jquery

$.ajax({\
url: 'test.php',\
success: function(response) {\
alert(response);\
},\
error: function(res) {\
alert(res.status);\
}\
});

## Answers

### Answer by krishna bramhadandi



### Answer by AVADHESH PATEL

$.ajax({\
url: 'test.php',\
success: function(response) {\
alert(response);\
},\
error: function(res) {\
alert(res.status);\
}\
});


---

Original Source: https://www.mindstick.com/interview/1588/ajax-requestajax-request-in-jquery

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
