getCookieValue ( string _url ) : string
Return the current cookie value.
Example
// Define the URL for which to get the cookie value
url = "https://www.idia-tech.com";
// Retrieve the cookie value for the specified URL
cookieValue = getCookieValue(url);
// Display the retrieved cookie value
console(cookieValue);
Parameters
_url (optional)
An url to find the good cookie, by host. It is important to enter a real URL with http:// and not just the host. Ex: https://www.idia-tech.com.