var flag = false; //True if checkbox is checked
$.ajax({
... //type, url, beforeSend, I'm not able to access flag here
success: function(){
// I'm not able to access flag here
}
});
Inside ajax, if I try to access flag
it says it is not defined. How can I use it inside ajax function?
Any Idea?
Both flag and ajax is body of a function. Nothing else is present inside that function.