Jump to content
  • 0

Не загружать display: none элемент


Andyk
 Share

Question

Вот незамысловатый скриптик скрытия/закрытия блока на js с запоминанием состояния.

<script type="text/javascript"> 
// <![CDATA[
function hide_block(show)
{
dE('hidden');
if (show && document.getElementById('hidden').style.display != 'none')
{
document.getElementsByName('hide')[0].focus();
createCookie('hidden_block', 'on', '365');
}
if (show && document.getElementById('hidden').style.display == 'none')
{
document.getElementsByName('hide')[0].focus();
createCookie('hidden_block', 'off', '365');
}
return true;
}

var cookie = readCookie("hidden_block");
var on_off = cookie ? cookie : 'on';

function init_hidden_block()
{
if (on_off == 'on')
{
dE('hidden', 1);
return true;
}
if (on_off == 'off')
{
dE('hidden', -1);
return true;
}
}
onload_functions.push('init_hidden_block();');
// ]]>
</script>

<span style="position: absolute; top: 0px; right: 0px;"><a href="" name="hide" onclick="hide_block(true);return false;"><img src="./styles/prosilver/theme/images/open_close.png" alt="open/close" title="open/close""/></a></span>

<div id="hidden">
Скрытый текст или не скрытый :)
</div>

А вопросец такой.

Элемент страницы, в данном случае div, имея свойство display: none все-равно загружается браузером, но не отображается. Так вроде и должно быть. Но, если впихнуть в div тяжелый контент в момент загрузки содержимое будет видно и "спрячется" оно только после полной загрузки.

Это можно обойти?

Вот пример, кнопочка вверху справа.

Edited by Andyk
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • 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