Giter VIP home page Giter VIP logo

Comments (5)

phtrivier avatar phtrivier commented on May 17, 2024

Note that when I use the docCookies library from MDN https://developer.mozilla.org/en/DOM/document.cookie I can finaly get a site-wide cookie ... but they seem to call document.cookie in a slightly different ; is it FF specific ?

document.cookie = escape(sKey) + "=" + escape(sValue) + sExpires + (sDomain ? "; domain=" + sDomain : "") + (sPath ? "; path=" + sPath : "") + (bSecure ? "; secure" : "");  

from jquery-cookie.

carhartl avatar carhartl commented on May 17, 2024

escape is deprecated in favor of decodeURIComponent. Will look into this.

from jquery-cookie.

jessegavin avatar jessegavin commented on May 17, 2024

This issue is affecting me as well.

from jquery-cookie.

miccek avatar miccek commented on May 17, 2024

up

from jquery-cookie.

carhartl avatar carhartl commented on May 17, 2024

Test showed for me it's working on Firefox 18 (that is quite some versions ahead). Maybe the issue occured because with the older version of the plugin you seem to have been using the name wasn't yet correctly encoded and Firefox borked on the name:

document.cookie = name + '=' + encodeURIComponent(value) + ...

Please everyone let me know if the issue still occurs with an up-to-date version of the plugin and I'm going to reopen.

from jquery-cookie.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.