[javascript] Pass accepts header parameter to jquery ajax

When I inspect the following code in Chrome Console it shows me a Request header Accept:undefined

jQuery.ajax({
        url: _this.attr('href'),
        accepts: "application/json; charset=utf-8",

    });
});

How do I set accept type as json. I don't want to set a custom header or use beforeSend

This question is related to javascript jquery

The answer is


Try this ,

$.ajax({     
  headers: {          
    Accept: "text/plain; charset=utf-8",         
    "Content-Type": "text/plain; charset=utf-8"   
  }     
  data: "data",    
  success : function(response) {  
    // ...
  }
});

See this post for reference:

Cannot properly set the Accept HTTP header with jQuery


Similar questions with javascript tag:

Similar questions with jquery tag: