I was trying out the examples from w3schools. I was wondering if is possible to extract the lastvisit data separately from username.

function checkCookie()
{
var username=getCookie("username");
if (username!=null && username!="")
{
alert(unescape(document.cookie.split(";")));
}

It is possible but depended on a certain factor -- how the cookie is stored. If you know how it is being stored, you would know how to retrieve it.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.