jQuery ajax Data Sent to Controller are Empty only in IE
- by saman gholami
This is my jQuery code :
$.ajax({
url: "/Ajax/GetConcertTime",
type: "POST",
cache: false,
data: { concertID: concertID.replace("ct", ""), date: selectedDateValue },
success: function (dataFromServer) {
//some codes ...
},
…