Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Ajax considered client or server-side scripting? [closed]

Is Ajax considered as client or server side scripting?

like image 718
rita Avatar asked Apr 21 '11 12:04

rita


2 Answers

The technology which co-ordinates the AJAX approach (i.e. javascript) is client-side, although server-side scripts/servlets are needed to give the response.

like image 119
TartanLlama Avatar answered Sep 19 '22 20:09

TartanLlama


Client. It runs on the browser only, and make requests to a server, just like the requests browsers do for any web page

like image 26
Ortiga Avatar answered Sep 17 '22 20:09

Ortiga