my script


               $('a#corregir_jqm_trigger').click(function(){
$('#jqm').jqm({ajax: this.href, trigger: '#corregir_jqm_trigger', modal: 'true', target:'div.jqmAlertContent', overlay: 50, overlayClass: 'whiteOverlay', cache: false, onLoad: preparar_corregir_form}).jqmShow().jqDrag('.jqDrag'); $('.jqmdTC').html('Enviar corrección de la página:');
                   jqm_windows();
                   return false;
               });

               $('a#enviar_jqm_trigger').click(function(){
$('#jqm').jqm({ajax: this.href, trigger: '#enviar_jqm_trigger', modal: 'true', target:'div.jqmAlertContent', overlay: 50, overlayClass: 'whiteOverlay', cache: false, onLoad: preparar_envio_form}).jqmShow().jqDrag('.jqDrag');
                   $('.jqmdTC').html('Enviar esta noticia por email');
                   jqm_windows();
                   return false;
               });

use the same jqm container, i pass the windows title via $('.jqmdTC').html, but if i click in the first link and then in the second the second allways showme the first ajax response. And im calling other thing!

how i can fix this?


Reply via email to