http://www.abeautifulsite.net/blog/2008/12/jquery-alert-dialogs/ porqué quiero hacer unos alert "chulos" y me pareció fácil de usar este plugin , he conseguido incluir el alert dentro de mi sitio y lo muestro , pero no consigo recoger el valor entrado por el prompt , según el link de la web pone que para recoger el valor
"Unlike their native JavaScript counterparts, you can use HTML in the message parameter. To specify a newline, you can use either \ n or < br />. These methods do not return the same values as confirm() and prompt(). You must access the resulting values using a callback function."
Yo tengo el siguiente código para que os hagais una idea a ver si alguien ve como hacer lo
Código PHP:
<script type="text/javascript">
//prompt()
var oPrompt = prompt;
function prompt(txt, input, title, func){
try {
jPrompt(txt, input, title, func);
} catch(e) {
func(prompt(txt, input, title));
}
}
prompt("Nombre para guardar el documento ?", "", "Documento", function(r) {
//if (r) alert(r);
});
He probado con $('variable').val(); pero no me funciona.
Alguna sugerencia ? Gracias por adelantado