Jump to content

Sikor

Newbie
  • Posts

    2
  • Joined

  • Last visited

Sikor's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Большое спасибо, всё заработало.
  2. Есть вот такая часть страницы: <script type="text/javascript"> function ShowPopup(id) { document.getElementById('popupIframe').src = '...someurl...'; document.getElementById('popupIframeContainer').style.display = 'block'; } function HidePopup() { document.getElementById('popupIframe').src = null; document.getElementById('popupIframeContainer').style.display = 'none'; } </script> <div id="popupIframeContainer" style="position: fixed; display: none; border: thin solid black; left: 20px; top: 20px; background-color: White"> <input type="button" value="X" onclick="HidePopup()"/> <iframe id="popupIframe"> </iframe> </div> При некотором действии на странице вызывается ShowPopup, который должен выводить "всплывающее окошко". Как сделать: Сделать неактивным (заблокированным) весь контент страницы под всплывающим окном? Как затемнить страницу под всплывающем окном? Как установить всплывающее окно по центру браузера?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy