![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Programmer
Join Date: Feb 2008
Location: India
Posts: 58
Rep Power: 1
![]() |
AJAX starting help
Hey for my project i need to learn ajax and i am getting its coding part but am stuck with
other things like: 1. Which IDE to use for windows 2. Which environment is need to run AJAX code on localhost 3. How to run the code 4. Where to get all these stuff Thanks in advance! |
|
|
|
|
|
#2 |
|
Hobbyist Programmer
|
Re: AJAX starting help
AJAX is a buzzword, meaning you are using javascript and sending http requests with it. If you are familiar with Javascript, then you should realize your questions basically don't make any sense. So here's the quick breakdown.
Javascript is a programming language. It is compiled from source by the web browser and ran on the fly. This means several things.. - Your web browser is all you need to run javascript code - Your javascript source code is completely open and anyone can see it - The source code can be written in any language, and is usually combined with a webpage, or saved as an external .js file (just a text file), and then included in that web page To make a javascript page, just make a simple html webpage on your computer, put your javascript in it, and open it in your browser. I'd suggest using firefox as I find its error debugging for javascript much better. Go to Tools->Error Console, then open your page and test your javascript functions. Any errors will show up there with a self-explaining message. To start using AJAX, you'll either need a webserver and a server side language (most likely), or nothing at all if you are going to have your javascript request content from existing sites. You could for example, have a button that calls a javascript function, which then requests a webpage with the current temperature, parses out the temperature data, and displays it on your page. I highly recommend using an existing framework like prototype when using AJAX as it makes it easy and stable to do something like that.
__________________
#programmingforums relay - http://thegupstudio.com/cgi-bin/pforelay.cgi freelance scripts - http://ryanguthrie.com/index.html |
|
|
|
|
|
#3 |
|
Programmer
Join Date: Feb 2008
Location: India
Posts: 58
Rep Power: 1
![]() |
Re: AJAX starting help
Hey thanks for your help. Now i am starting to use google web toolkit with eclipse. But one thing for sure i would like to state is that ajax is the thing about which there is least things available on net and is a kind of unkown to most of the programmers.
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| change button in ajax update panel to post normal way | minus4 | Visual Basic .NET | 1 | Jun 6th, 2008 8:54 AM |
| controllers & AJAX | matthewvb | Ruby | 2 | Aug 30th, 2007 2:47 PM |
| Something like AJAX | Writlaus | JavaScript and Client-Side Browser Scripting | 4 | Dec 20th, 2006 3:44 AM |
| Starting a career... start-ups worth it? | Jimbo | Coder's Corner Lounge | 12 | Nov 2nd, 2006 1:23 PM |