Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update a web page without reloading the whole page

Youtube does not reload entire page to navigate between pages. How to use that navigation scheme?

Do I need to use Javascript or do I need an API?

like image 944
ndkcha Avatar asked Jan 22 '26 13:01

ndkcha


1 Answers

It's called ajax load. It probably uses an API in the background, but you do not need to and it is a Javascript technology.

Here is a primer for ajax Ajax tutorial by W3Schools

like image 175
firelynx Avatar answered Jan 24 '26 02:01

firelynx