I've been hearing ajaxify for awhile now. However when I tried google/youtube to have it explained to me better, I really cannot grasp the nuts and bolts about it. Like, is it something that makes my page load faster? It is? Why? Is is something that my html/php codes are converted into something by ajaxify to make my page faster to load? It is? Why?
Asked
Active
Viewed 5,066 times
1
-
1It means to load content via ajax, where the content has been statically inside the HTML before. – Daniel W. Dec 24 '14 at 17:13
-
Instead of reloading the entire page to get new information, "ajaxifying" refers to modifying the code to make HTTP requests via JavaScript to load and display new data without reloading the entire page. – Michael Berkowski Dec 24 '14 at 17:14
-
1You don't have to serve all your content at once. Instead you serve a smaller version of your page, which then gets enhanced in time or after user actions. – Sirko Dec 24 '14 at 17:15
-
1...Like Stack Exchange does when new answers or comments are posted, or new votes are cast. This is all updated in the current open page without needing to reload everything – Michael Berkowski Dec 24 '14 at 17:15
-
1"without needing to reload everything", you mean by the time I hit the refresh button, I see that my page is being reloaded but what it actually does is that it just updates a portion of it? – Charmie Dec 24 '14 at 17:18
-
I think I formulated an understanding: when you use ajaxify, it helps your page load just a portion of it. Other parts are somewhat "saved/cached". The reload takes effect only on the portions where changes triggered by the scripts have undergone. – Charmie Dec 24 '14 at 17:25