PHP Classes

File: jquery.cookie.min.js

Recommend this page to a friend!
  Classes of Gourab Singha   Easy Website Translation Script   jquery.cookie.min.js   Download  
File: jquery.cookie.min.js
Role: Auxiliary data
Content type: text/plain
Description: Javascript
Class: Easy Website Translation Script
Translate pages automatically using jQuery plug-in
Author: By
Last change:
Date: 14 years ago
Size: 749 bytes
 

Contents

Class file image Download
jQuery.cookie=function(b,j,m){if(typeof j!="undefined"){m=m||{};if(j===null){j="";m=$.extend({},m);m.expires=-1}var e="";if(m.expires&&(typeof m.expires=="number"||m.expires.toUTCString)){var f;if(typeof m.expires=="number"){f=new Date();f.setTime(f.getTime()+(m.expires*24*60*60*1000))}else{f=m.expires}e="; expires="+f.toUTCString()}var l=m.path?"; path="+(m.path):"";var g=m.domain?"; domain="+(m.domain):"";var a=m.secure?"; secure":"";document.cookie=[b,"=",encodeURIComponent(j),e,l,g,a].join("")}else{var d=null;if(document.cookie&&document.cookie!=""){var k=document.cookie.split(";");for(var h=0;h<k.length;h++){var c=jQuery.trim(k[h]);if(c.substring(0,b.length+1)==(b+"=")){d=decodeURIComponent(c.substring(b.length+1));break}}}return d}};