Please, update the script to support Jquery 1.7.+
Thanks!
Please, update the script to support Jquery 1.7.+
Thanks!
Hola. Alguna vez comentas que para usar el script en HTML5 y con Explorer hay que poner una modificación o script. ¿cual es? ¿Nos puedes dar mas datos?
Hi. Sometimes you said that we must include some script to use youir script on HTML5 and Explorer. Can you give us more information?
P.D.: Puedes contestar en inglés si piensas que por interés general vaya en ese idioma. GraciasHi,
Very fine job : I love it.
Maybe a detail : I want to have a javascript function : BoxYesNo(), which may return the button pressed. It looks like that :
<script type=’text/javascript’> function BoxYesNo (message){ BackValue=””;
{type: “confirm”,buttons : [{type: “submit”, value: “Yes”},{type: “submit”, value: “No”}]}, function(result) { BackValue = result; }); return BackValue; } </script>
The problem is that the callback function seems to be asynchronous.
Is there a way to fix it ?
Best regards
Christian
Here’s the right code…
<script type=’text/javascript’> function BoxYesNo (message){ BackValue=””; $.msgbox( message, {type: “confirm”,buttons : [ {type: “submit”, value: “Yes”},{type: “submit”, value: “No”} ]}, function(result) { BackValue = result; }); return BackValue; } </script>
Outstanding! Converted a project from confirm and ajax modal dialog panels in a very short time.
One question: What are the valid input types we can display on a msgbox? I see the Text type, but what about a Date picker and Combobox?
Thanks
COPYRIGHT © 2012 ENVATO| TERMS OF USAGE| SUPPORT/HELP| ICONS BY TANGO + WEFUNCTION + FAMFAMFAM
Adobe®, Flash®, Flex®, Fireworks®, Photoshop®, Illustrator®, InDesign® and After Effects® are registered trademarks of Adobe Systems Incorporated.
Hola. No, si alguna vez lo he comentado es porque habrá sido un problema con el DocType.
Si el sitio está bien diseñado en HTML5 y tiene los scripts de compatibilidad de HTML5 con IE6 (por ejemplo boilerplate), entonces no hay ningún problema.
English version: There’s no problem at all
Best Regards.