views:

37

answers:

2

Does anyone know any jquery plugin to show successful pop up message after form submission?

+2  A: 

jQuery UI dialog box?

Mark Schultheiss
+1  A: 

jQuery UI has a dialog option and a lot of other stuff as well.

Hugo Migneron
Is there a way if I can stop that dialog box for few seconds before form gets submitted.? What I mean is , user presses the submit button, dialog box is notification for user and that dialog box should be constant there for couple of seconds before the form is submitted.
yogsma
Yes, when the user submits the form, it is most likely a hyperlink / button of some sort. In your javascript event handler for the hyperlink, return false (that will prevent the default behavior of redirecting the user). You can use a number of functions to wait for x seconds before you then redirect the user. You can use the callback functions for example (where you can set the wait).
Hugo Migneron
I need to make that dialog box to wait. There is no option for that. Do you know any other function in jquery for that?
yogsma