|
Is it just me or is AJAX just a little bit overused? People are using it for things like getting content instead of simply loading a new page. It seems useless to me to use it in that manner.
I think it should be used for things where there actually need to be updates (chats, games, etc), rather than something that has already been solved by a very reasonable and proven solution.
What do you guys think?
|
|
|
|
Well, it depends. Is the method of doing it via AJAX faster or more effecient? For example, as you said when we rated ZT's code for the Coding Contest, that it would be faster to modify normally or use the Quick Reply normally. However, if you have the file submit data to a file specifically made to handle AJAX requests (Such as the chat room you mentioned, sort of like vB's), then I think it is more effective. I'm still not a real big person with AJAX, as in knowing what it is and what's it truly about. So I probably sound like a dumbass right now.
|
|
|
|
|
It depends what your using it for. if it is a web application such as Gmail then I think it is a good idea. In that case it makes the web app. much faster and more efficient. But when used for everyday things it's just kind of useless. In my opinion I don't think it's overused. The only times I see it is when it is put to good use.
|
|
|
|
|
In a sence its overused, i suppose people are just trying to show they have a knowledge of the code, still i'd use a much more simplier method to solving a problem then just going all out on loading time etc. But yeah it does depend on the situation, though i do like how it works on vBulletin when posting, its kinda spiffy to see working.
|
|
|
|
I normally use iframes but recently have been getting in to use Ajax's XMLHTTPRequest object. People on the Invisionfree forums use it all the time so i thought i may as well learn. It's used alot yes but it's very helpful and faster than using iframes.
|
|
|
|
Zelnen what you are talking about is using ajax to grab the information on other pages. That is of course helpful for forums/website where you don't have power over the server-side scripting. But if you do then there's not much need for Ajax except for certain tasks. Here's an interesting read.
|
|
|