{Javascript} Cookies-Trickcode

{Javascript} Cookies-Trickcode


{Javascript} Cookies-Trickcode
google

Javascript Cookies


In these articles, here I am placing a Method for finding Javascript Cookies

for example, if we want to know which control causes the Javascript Cookies on the page. you simply use this code.

<script type=”text/javascript“>
        function createCookie() {
            document.cookie = “CookieName=CookieValue;” + “expires=Sat, 16 May 2020 18:40:22 GMT”;
        }
        function getCookieValue(key) {
            currentcookie = document.cookie;
            if (currentcookie.length > 0) {
                firstidx = currentcookie.indexOf(key + “=”);
                if (firstidx != -1) {
                    firstidx = firstidx + key.length + 1;
                    lastidx = currentcookie.indexOf(“;”, firstidx);
                    if (lastidx == -1) {
                        lastidx = currentcookie.length;
                    }
                    return unescape(currentcookie.substring(firstidx, lastidx));
                }
            }
            return “”;
        }
    </script>


Do you know:-


If you like the tutorial, then please share this tutorial with your friends on social media.