Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the term for a request that redraws the whole web page?

I feel like I'm always stumbling over the language used to distinguish between an AJAX request and a standard web request (one that redraws the whole page using HTML returned from the server). In other words, what's the term for the opposite of an AJAX request?

like image 451
weotch Avatar asked Nov 13 '22 09:11

weotch


1 Answers

On the level of the request, there is no difference. It's all HTTP GETs or POSTS. The difference is in the effect. I might call it a page load vs. a page update.

like image 172
hcayless Avatar answered Dec 10 '22 02:12

hcayless