top button
Flag Notify
Site Registration

How does $.ajaxSetup() method work in jquery?

0 votes
380 views
How does $.ajaxSetup() method work in jquery?
posted Aug 5, 2014 by Amritpal Singh

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

The ajaxSetup() method sets default values for future AJAX requests.

Syntax

$.ajaxSetup({name:value, name:value, ... })

The parameters specifies the settings for AJAX requests with one or more name/value pairs.

Example:

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("button").click(function(){
    $.ajaxSetup({url:"demo_ajax_load.txt",success:function(result){
      $("div").html(result);}});
    $.ajax();
  });
});
</script>
</head>
<body>

<div><h2>Let AJAX change this text</h2></div>
<button>Change Content</button>

</body>
</html>
answer Aug 7, 2014 by Amit Kumar Pandey
0 votes

The ajaxSetup() method sets default values for future AJAX requests
Syntax:
$.ajaxSetup({name:value, name:value, ... })

answer Aug 7, 2014 by Karamjeet Singh
...