किसी विशिष्ट पृष्ठ के लिए कुकीज़ सेट करने के लिए, आपको "window.location.pathname" संपत्ति का उपयोग करने की आवश्यकता है। संपत्ति वर्तमान पृष्ठ का पथ और फ़ाइल नाम लौटाती है।
उदाहरण
आप किसी विशिष्ट पृष्ठ के लिए कुकीज़ को लागू करने के लिए निम्नलिखित कोड को चलाने का प्रयास कर सकते हैं -
लाइव डेमो
<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; document.cookie="name=" + cookievalue + ";path=myPath"; 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>