Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function showConfirm(msg){
- var clicked;
- $.when(showConfirm(msg,clicked)).done( function(){ return clicked; });
- }
- function showConfirm(msg,val){
- msgBox.html(msg+"<br><br>");
- msgBox.dialog({
- modal: true,
- title: "SMON",
- buttons: {
- Aceptar: function(){
- val=1;
- $(this).dialog( "close" );
- },
- Cancelar: function(){
- val=0;
- $(this).dialog("close");
- }
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment