Jump to content
  • 0

Сохранение позиции раздвижных блоков


Champ
 Share

Question

Здравствуйте!

Снова у меня небольшой вопросик :)

Контент сайта разделён таблицей на три части:

200px/ВСЁ ОСТАЛЬНОЕ/200px

Хочу сделать так, чтоб правую сторону можно было скрыть (для увеличения центрального контента).

Как "раздвигать" и "сдвигать" правую колонку я научился, но вот как сохранить это положения для пользователя?

К примеру, он скрыл правую колонку, перегрузил страницу или перешёл на другую, как правая колонка снова раздвинута.

Вот код:


Скрипт:
$(document).ready(function () {
$("#wideView2").click(function () {
$("#RightSidBar").toggleClass("hide");
$(this).toggleClass("hide");
});
});
CSS:
#RightSidBar
{
width: 200px;
float: right;
visibility: visible;
overflow: hidden;
}
#RightSidBar.hide
{
width: 10px;
visibility: hidden;
overflow: hidden;
}

Само отображение:
<a title="скрыть/отобарзить" id="wideView2" href="#"> >< </a>
<td id="RightSidBar" style="height: 100%; vertical-align: top;">

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Champ,

В куках.

Или, если есть регистрация пользователей в БД с привязкой к его аккаунту.

А можете подсказать (привести пример) как вышеописанный код заставить сохранять и брать значение с куков?

Link to comment
Share on other sites

  • 0

А в случае если вы не хотите подключать еще один плагин, то:


//установить куки, ключ visibly, его знчение 2col,
//жизнь куки длится 5дней:
document.cookie = "visibly=2col;max-age="+(60*60*24*5);
//куки находятся в document.cookie:
var cookie = document.cookie;
//их надо красиво "разбить" или искать необходимые строки:
if(cookie.search(/visibly=2col/) != -1){
//показываем 2 колонки.
}

Link to comment
Share on other sites

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