S Rajagopal wrote:I have button in my Jsp page which triggers an Ajax call.
Clarification: no you don't. You have a button in your HTML page. JSP only exists on the server. Once the response is sent to the browser, it's just an HTML page like any other.
Is it possible to use an alert to notify the data retuned by ajax call?
You can do whatever you want in the callback, including issuing an alert. (But why? Alerts are awful.)