Jump to content

Octane

Newbie
  • Posts

    20
  • Joined

  • Last visited

Everything posted by Octane

  1. приведенный мной код работает. В чем по вашему здесь извращения? /*@cc_on … @*/ — Conditional Compilation (cтандартная для JScript в Internet Explorer конструкция). window.opera — специальный встроенный объект для идентификации браузера Opera. Пример, использующий navigator.product, для определения браузеров, построенных на основе Gecko, есть в MDC.
  2. <div id="specific">…</div> <script type="text/javascript"> if(navigator.product == "Gecko") { document.getElementById("specific").style.display = "none"; } </script> или <div id="specific" style="display: none;">…</div> <script type="text/javascript"> var ie /*@cc_on = true @*/; var opera = window.opera && opera.version; if(ie || opera) { document.getElementById("specific").style.display = "block"; } </script>
×
×
  • 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