I need to send my contact form via ajax and then show pop-up message.

For example if I'll send form POST data to some url it should response with "OK" or "FAIL"

link|improve this question
feedback

3 Answers

Drupal 6

A module is there for ajax submition

http://drupal.org/project/ajaxsubmit

$form['#ajaxsubmit'] = TRUE;

That will change your form behavior to ajax.

Drupal 7 core integrated it.

link|improve this answer
Sorry but I don't understand what exactly I need to do. I have Drupal 6 – ruslan.savenok Nov 18 '11 at 11:20
your form need to appear in a popup? or you just submit form via ajax? – sibizulu Nov 18 '11 at 12:42
Only ajax submitting – ruslan.savenok Nov 18 '11 at 18:24
feedback

Use the JQuery Form plugin, it's very easy and practical to implement: http://jquery.malsup.com/form/#getting-started

link|improve this answer
feedback

you can use the ajax module(http://drupal.org/project/ajax) to ajaxify your form, to show the popup, use a module like bettermessages, or growl or something of the sort.
Joshua

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.