hey friends i have make an chatbox with jquery but it is unable to save cookies
please look my cade and tell me that why it is not working?
$(document).ready(function() {
$(".trigger").click(function() {
$(".chat").show("fast");
$(this).showClass("active");
$.cookie('chatbox', 'open', {
expires: 7
});
});
});
The cookie code you posted was invalid. Use this: