jQuery cookie not working properly in wordpress
Ok, I solve this with the help of @TheDeadMedic’s help. I use wordpress cookiepath constant and it works on wordpress perfectly. Here is the jquery code: jQuery(document).ready(function () { // baking cookie ;p function set_cookie(ID) { document.cookie = ID + “=opened; path=<?php echo COOKIEPATH ?>”; } // getting it out from the oven… function get_cookies_array() … Read more