1 of 2
1
What is AJAX?
Posted: 04 September 2010 05:58 AM   [ Ignore ]
Newbie
Rank
Total Posts:  2
Joined  2010-09-03

I am a beginner to JavaScript & would like to know about AJAX.

Any one?

Profile
 
 
Posted: 07 September 2010 04:35 AM   [ Ignore ]   [ # 1 ]
Member
Avatar
RankRankRank
Total Posts:  94
Joined  2010-06-17

THAT my friend is one open question ...

You can read about the overall “what is it” on Wikipedia at http://en.wikipedia.org/wiki/Ajax_(programming)
W3 Schools (always a good resource) has some tutorials at http://www.w3schools.com/Ajax/Default.Asp
one of my staff wrote an article on SEO with Ajax at http://www.beanstalk-inc.com/articles/seo/seo-ajax.html

A more specific “what you’d like to do” would help. :)

Dave Davies, CEO
Beanstalk SEO

Profile
 
 
Posted: 09 September 2010 11:11 PM   [ Ignore ]   [ # 2 ]
Newbie
Avatar
Rank
Total Posts:  4
Joined  2010-09-09

AJAX is a way to create events on webpages that interact with the user without having to submit or refresh the page. Its achieved via client side scripting in javascript. Many of AJAX common functions such as form validation will be achieved through the browser in HTML5 so its important to read about the new tags as many functions are set to covered within HTML5.

Profile
 
 
Posted: 17 September 2010 01:20 AM   [ Ignore ]   [ # 3 ]
Newbie
Rank
Total Posts:  4
Joined  2010-03-15

So there is no caching of the page then? I heard it was similar to how Facebook works.
Is is better to use AJAX when building a site or will it use up a lot of space to have an AJAX based site?

Profile
 
 
Posted: 28 September 2010 07:52 AM   [ Ignore ]   [ # 4 ]
Newbie
Rank
Total Posts:  4
Joined  2010-09-28

hello Nowbie…
thanks for information sharing…it is very useful for me…
3d ds games

Profile
 
 
Posted: 05 October 2010 10:29 PM   [ Ignore ]   [ # 5 ]
Newbie
Rank
Total Posts:  3
Joined  2010-10-05

very interessting while working with ajax is, if you validate inputs from forms you dont have to send all: validate what you want to validate, the rest will be still in the inputs since the website dont have to refresh.

its very usefull and easy to use with jquery

Profile
 
 
Posted: 12 October 2010 10:35 AM   [ Ignore ]   [ # 6 ]
Newbie
Rank
Total Posts:  8
Joined  2010-10-12

I reckon AJAX is huge and definitely something that you MUST know. The possibilities are endless :) I started off with jQuery and I’d recommend learning it through jQuery as well

$.get('page.php',{id1},function(data){
        alert(data)
;
})

Boo ya:) Once you’ve had a crack with AJAX, have a crack with JSON as well… same sort of thing really but a little different syntax and returns something different

$.getJSON('page.php',{id1},function(data){
        alert(data
.name);
}); 
Profile
 
 
Posted: 14 October 2010 10:05 AM   [ Ignore ]   [ # 7 ]
Newbie
Rank
Total Posts:  1
Joined  2010-10-14

Hi

AJAX full form is Asynchronous JavaScript and Xml, a programming language which allows a web page to receive miniscule amounts of data from a web server without reloading the complete page. It works together with Javascript and used to create dynamic dynamic and interactive web pages.

seo consultancy

Profile
 
 
Posted: 24 November 2010 08:43 AM   [ Ignore ]   [ # 8 ]
Newbie
Rank
Total Posts:  4
Joined  2010-11-23

Ajax is a group of interrelated web development techniques used on the client side to create interactive Web applications. AJAX stands for Asynchronous JavaScript and XML.


________________________________
Buy Loose Leaf Tea || Buy Earl Grey Tea

Profile
 
 
Posted: 05 December 2010 03:51 PM   [ Ignore ]   [ # 9 ]
Newbie
Rank
Total Posts:  3
Joined  2010-12-05

;-P Ajax is a way of developing Web applications that combines:
=======================
SEO Forum India SEO India forum

Profile
 
 
Posted: 10 December 2010 05:56 AM   [ Ignore ]   [ # 10 ]
Newbie
Rank
Total Posts:  5
Joined  2010-12-10

AJAX cascading menu, very easy to use, realize asynchronous submission!

Profile
 
 
Posted: 10 December 2010 11:07 AM   [ Ignore ]   [ # 11 ]
Newbie
Avatar
Rank
Total Posts:  7
Joined  2010-12-10

I can recommend two cool books about AJAX:
Ajax: The Definitive Guide
Building a Web Site with Ajax

If you want you can check out their ratings…

Profile
 
 
Posted: 13 December 2010 05:28 AM   [ Ignore ]   [ # 12 ]
Newbie
Rank
Total Posts:  1
Joined  2010-12-13

Very Nice information about ajax thanks

Profile
 
 
Posted: 13 December 2010 06:23 AM   [ Ignore ]   [ # 13 ]
Sr. Member
RankRankRankRank
Total Posts:  139
Joined  2010-04-23

AJAX is a way to get asynchronous data for a web page so that does not have to load all at once. This allows a page to load faster and allows part of a page to be dynamic, can be reloaded with have to reload the whole page.
__________________________________
Sudoku - Flash Games  - Dodge the Boxes

Profile
 
 
Posted: 22 December 2010 01:38 PM   [ Ignore ]   [ # 14 ]
Newbie
Rank
Total Posts:  5
Joined  2010-12-12

@beanstalkseo
i am search about ajax. thanks for the links

Profile
 
 
Posted: 30 December 2010 09:11 PM   [ Ignore ]   [ # 15 ]
Newbie
Rank
Total Posts:  10
Joined  2010-12-30

AJAX is the way for the client web page and the server to communicate with one another without having to reload the page.

Profile
 
 
   
1 of 2
1