Sunday, August 16, 2009

Java Script Cookies

function Declaration of Read Cookies :--
function ReadCookie(cookieName) {
var theCookie=""+document.cookie;
var ind=theCookie.indexOf(cookieName);
if (ind==-1 cookieName=="") return "";
var ind1=theCookie.indexOf(';',ind);
if (ind1==-1) ind1=theCookie.length;
return unescape(theCookie.substring(ind+cookieName.length+1,ind1));
}
function calling of Read cookies :-
ReadCookie('MycookieName');

No comments:

Post a Comment