i have a ajax code that works properly and gives the desired result. I want to modify this code and want that when a reply is received from ajax a popup/modal box should get
Try put this inside success callback :
success: function (returndata) { if (returndata[4] === 1) { $('#bsModal3').modal(); // this } else { // other code } },