Asked 1 years ago
16 Mar 2023
Views 264
steave

steave posted

jQuery $.cookie is not a function



$.cookie(csfr_cookie_name);

i am getting following error :

$.cookie is not a function

eclipse-learner

eclipse-learner
answered Mar 16 '23 00:00

try to add jquery.cookie plugin in your website before use the $.cookie


<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js" integrity="sha512-3j3VU6WC5rPQB4Ld1jnLV7Kd5xr+cq9avvhwqzbH/taCRNURoeEpoPBK9pDyeukwSxwRPJ8fDgvYXd6SkaZ2TA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>


may be it solve the problem !!
Post Answer