Hello
I am using Jquery Cookie for that it given me Error "$.cookie is not a function"
Used Plugin And My code as bellow.
$(window).load(function(){
if($.cookie('chat_user_name') !== 'undefined' && ($.cookie('chat_user_id') !== 'undefined'))
{
requestChat($.cookie('chat_user_name'),$.cookie('chat_user_id'));
}
});
In IF condition given error.How can i solved
Suggestion Me ,
Thank you