[jQuery] jquery prompt replacement
Hi,
I've seen a number of jquery prompt replacements that allow you to
have a customizable prompt of some sort but none that allow you to
actually use it the way a prompt is normally used - that would say
var x = prompt("please enter your value");
alert(x);
Is there anything like that?
If not - I have a situation like this where I have functions that take
a function as a parameter - for example:
newProc(Command('info'));
Command returns a value based on, in some cases at least, the value a
user inputs in response to a prompt.
Does anyone have an example of how you would do that using any of the
prompt replacing libraries?