0% found this document useful (0 votes)
14 views1 page

Prac 3

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views1 page

Prac 3

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<html>

<script>
function rdcookies()
{
var cookies=document.cookie;
var cookiearray=cookies.split(";");
for(var i=0;i<cookiearray.length;i++)
{
var cookie_pair=cookiearray[i];
var name_value_array=cookie_pair.split("=");
document.write("<br>Name is "+name_value_array[1]+" value
is "+name_value_array[2]);
}
}
</script>
<body>
<input type="button" value="Get Cookies" onclick="rdcookies()">
</body>
</html>

You might also like