
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set Cookies for Homepage Only using JavaScript
To set cookies for a homepage, add the page to the homepage itself.
Example
You can try to run the following code to set cookies
<html> <head> <script> <!-- function WriteCookie() { if( document.myform.customer.value == "" ){ alert("Enter some value!"); return; } cookievalue= escape(document.myform.customer.value) + ";"; var myPath = window.location.pathname; var address = query.split("/"); if ((address[address.length - 1]).toLowerCase() == "home.html") { document.cookie = "name=" + cookievalue; document.write ("Setting Cookies : " + "name =" + cookievalue); } } //--> </script> </head> <body> <form name = "myform" action=""> Enter name: <input type="text" name="customer"/> <input type="button" value="Set Cookie" onclick="WriteCookie();"/> </form> </body> </html>
Advertisements