Hi All,
Any way to stop the postback/next action based on result inside success
                $.ajax({
                    type: "POST",
                    url: url,
                    data: data,
                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    success: function (result) {
                        if (result == "" || result == null || result == "undefined") {
                            return false
                        }
                    }
                });