|
Browser Cookie |
<script>
<!--
document.cookie="name=SamarCookie"
var st = document.cookie.indexOf("name=")
// yields starting point of 'name=' substring
document.write(
"Cookie Length : " + document.cookie.length +"<br>"+
"This is the Full Cookie : " + document.cookie +"<br>"+
"Uppercase Cookie is : " + document.cookie.toUpperCase() +"<br>"+
"Name of Cookie : " +
document.cookie.substring(st+5, document.cookie.length )
)
// -->
</script>
|
|
|