Показать сообщение отдельно
  #3 (permalink)  
Старый 08.07.2013, 00:48
Новичок на форуме
Отправить личное сообщение для CaguCT Посмотреть профиль Найти все сообщения от CaguCT
 
Регистрация: 07.07.2013
Сообщений: 3

Спасибо огромное, буду разбираться в том что Вы написали.
Хотя все равно не понимаю, делал подобное на другом сайте с таким кодом:
в head:
$(document).ready(function(){
		var editor = $.cookie('editor');
		if( editor != null && editor=='on' )
		{
			$(".editoron").text("Выключить editor");
			$(".editoron").addClass("editoroff");
			$(".editoron").removeClass("editoron");			
		}
		$(".editoron").click(function() {
			if( $.cookie('editor') != 'on' )
			{
				$.cookie('editor', 'on', {expires:31, path:"/"});
				$(this).text("Выключить editor");
				$(this).removeClass();
				$(this).addClass("editoroff");
			}
			else
			{
				$.cookie('editor', '', {expires:-1, path:"/"});
				$(this).text("Включить editor");
				$(this).removeClass();
				$(this).addClass("editoron");
			}
			return false;
		});
		$(".editoroff").click(function() {
			if( $.cookie('editor') != null )
			{
				$.cookie('editor', '', {expires:-1, path:"/"});
				$(this).text("Включить editor");
				$(this).removeClass();
				$(this).addClass("editoron");
			}
			else
			{
				$.cookie('editor', 'on', {expires:31, path:"/"});
				$(this).text("Выключить editor");
				$(this).removeClass();
				$(this).addClass("editoroff");
			}
			return false;
		});
	});

В body:
<a href="#" class="editoron">Включить editor</a>

Ну и работает прекрасно.
Еще раз спасибо за ответ.
Ответить с цитированием