javascript - Strange jQuery dialog behaivor in Chrome. Working in IE but not in Chrome -


i hava dialog not working in chrome in ie.

i working in beta page:

http://www.parlamentoabierto.mx/ you can see malfunction if go map , click on it. modal background not disappearing.

  dialog = $("#modal-mapa");   console.log(dialog);     dialog.dialog({     autoopen: false,     height: 400,     width: 700,     modal: true,     draggable: false,     resizable: false,   dialogclass: 'ventanamodal',     open: function(event, ui) { console.log(dialog.dialog('option','position')); $('.ui-widget-overlay').bind('click', function () { $(this).siblings('.ui-dialog').find('.ui-dialog-content').dialog('close'); }); }     }); 

my guess can version of jquery not best wont easy correct.


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -