Показать сообщение отдельно
  #4 (permalink)  
Старый 28.07.2012, 16:25
без статуса
Отправить личное сообщение для Deff Посмотреть профиль Найти все сообщения от Deff
 
Регистрация: 25.05.2012
Сообщений: 8,219

Поправленный кусок страницы с нижним скриптом
(*включить куки и убрать бордер (после тестов) - думаю сможете сами!

[HTML]<script type="text/JavaScript">
$(document).ready(function (){
var box1 = $.cookie('box1')
if(box1 =='none'){
$('#box1').remove();
}
$('#boxs1').click(function() {
$('#box1').slideUp(1000);
$.cookie('box1rr', 'none', { expires: 365});
});
});
</script>
<script type="text/JavaScript">
$(document).ready(function (){
var box2 = $.cookie('box2')
if(box2 =='none'){
$('#box2').remove();
}
$('#boxs2').click(function() {
$('#box2').slideUp(1000);
$.cookie('box2', 'none', { expires: 365});
});
});
</script>


        <div class="container">	
<span style="display:inline-block;border:1px solid red">

			<input type="checkbox" class="fire-check" />x ПРИМЕР 
<br>данное уведомление должно появится при закрытии таблички <<<

<div class="box" id="box1" style="margin-top:-23px;position:relative;z-index:23;">
<div class="close" id="boxs1"><input type="checkbox" class="fire-check">x</div>


При закрытии таблички должно появится уведомление как в примере!>> Но пока не получается сделать((

</div></span>
			<section>
			
	            <div class="tn-box tn-box-color-1">
					<p>Ваши персональные настройки были успешно сохранены!</p>
					<div class="tn-progress"></div>
				</div>
			</section>
        </div>




<br />
</div>

<!--
	We request you retain the full copyright notice below including the link to www.phpbb.com.
	This not only gives respect to the large amount of time given freely by the developers
	but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
	the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
	"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
	forums may be affected.

	The phpBB Group : 2006
//-->
Ответить с цитированием