Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/01/2012, 06:44
Avatar de chicohot20
chicohot20
 
Fecha de Ingreso: mayo-2009
Mensajes: 388
Antigüedad: 15 años
Puntos: 43
Respuesta: Dialog jquery UI

Creo que tiene ser algo asi:

Código HTML:
Ver original
  1. $("#dialogo").dialog().hide();
  2. $(".opciones_info").click(function() {
  3.     if($("#dialogo").is(":hidden")) $("#dialogo").show();
  4.     else $("#dialogo").hide();
  5.   });