Вопрос

Using jQuery.cookie here:

// Do stuff
$.cookie('something', 'yes', {
    domain: 'example.com',
    httpOnly: false,
    path: '/',
    expires: 10,
    secure: true
});
// Do other stuff...including using the cookie value right away

Do all browsers do the same thing?

Это было полезно?

Решение

Yes....

That is the point in that plugin -- to be able to use the value right away.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top