Waseem
Waseem

Reputation: 11961

I want the simplest ajax form application

I want ajax application to process a simple form with textinput and submit button only , and without validation , i want to add this with a php script . I ask this because i don't know how to program with ajax or javascript .

Upvotes: 0

Views: 535

Answers (6)

Rob
Rob

Reputation: 31

I know this isn't technically on topic but I wanted to make a quick point about AJAX and user's back buttons - there is a plugin for jQuery which sorts this out. If you use the monolithic YUI there is also a History Manager packaged with that as well.

Upvotes: 0

Malfist
Malfist

Reputation: 31805

Honestly, you're not going to get anywhere without learning javascript. You should really look into learn it, it's not that complex of a language either. Ajax isn't actually a language, it's a function, a feature so to speak. Once you get the hang of using it, it's not difficult either, and frameworks like JQuery and MooTools will make it a lot easier.

www.w3schools.com is a good place to learn javascript, don't worry if you're constantly looking things up while learning it, even the best of us have to do so. And never be afraid of asking questions, that's how you learn.

If you know php, javascript would be relatively simple to pick up. One thing to keep in mind when using AJAX is that you remove the users ability to hit the back button or bookmark a page, because the use isn't taken to a new page.

Upvotes: 3

Pat
Pat

Reputation: 36702

You can use the ajaxSubmit plugin for jQuery.

After you include jquery and the plugin in the html you just add

$(document).ready(function () {
    $('form').ajaxSubmit('#result');
});

Where "result" is the id of the div where you want the results to go.

Upvotes: 0

Galwegian
Galwegian

Reputation: 42247

Before you dive onto jQuery (which I recommend), it may help to start with a really simple tutorial to get an understanding of what's happening.

Ajax Beginners Tutorial may help.

Upvotes: 2

okoman
okoman

Reputation: 5657

You should use a javascript library such as jQuery or prototype. You'll also find some tutorials there. If you want to do it yourself, read about XMLHttpRequest.

Upvotes: 1

Ryan Lanciaux
Ryan Lanciaux

Reputation: 5976

I would highly recommend using jQuery -- there are some good tutorials (some are video) available at jQuery for Designers.

Upvotes: 3

Related Questions