Fri 24 Aug 2007
Finally a new version of jQuery Impromptu has been released. This release in my opinion has a few new cool features. First off you can now control the speed of the fade and the prompt box. Also you can now set which jQuery effect to use to bring in the prompt(show, fadeIn, slideDown, or your own custom effect).
Now to the good stuff. Now you can have a submit function. Just as you have form.submit(), you now can have the same function which operates about the same. You can validate your fields and determine whether to proceed sending the data and closing the prompt or not(returning true or false accordingly). Then you will still have your separate callback to be called after the prompt completely closes.
I hope this is of some use to someone, I know I’ve already used it several times! There are examples of these new features on the Impromptu site.

August 28th, 2007 at 6:29 am
There is a small typo error on example 10:
$.prompt(txt,{
callback: mysubmitfunc,
buttons: { Ok:true }
});
must be replaced by
$.prompt(txt,{
submit: mysubmitfunc,
buttons: { Ok:true }
});
Congratulation for this plugin
August 28th, 2007 at 6:48 am
I was just seeing if anyone was paying attention
Just Kidding, thanks for catching the mistake.
August 30th, 2007 at 2:43 am
Thx rafal98 for picking up the typo, was pulling my hair out as to why it didn’t want to do the validation
trent - great plug-in!!!
August 30th, 2007 at 6:42 am
Sorry, It completely slipped my mind to update the docs :/. They will be updated today!
August 30th, 2007 at 7:14 pm
Docs are updated!