Спасибо огромное, буду разбираться в том что Вы написали.
Хотя все равно не понимаю, делал подобное на другом сайте с таким кодом:
в 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>
Ну и работает прекрасно.
Еще раз спасибо за ответ.