javascript - How do I hide the outline in popup window -


i created popup/modal window in js, , need hide outline map container. init map used js code

  self.mapdialogoptions = {             autoopen: false,             modal: true,             draggable: false,             resizable: false,             height: 450,             width: 1050,             title: '',             dialogclass: '',             open: function () {                 $(this).find('#map-close').on('click', function () {                     $('#map-container').dialog('close');                     self.ismapdialogvisible(false);                 });             }         }; 

if click on popup (map) container appears outline see screenshot

in css file add:

#map-container {   border-style: none;   border-width: 0; } 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -