A simple, lightweight jQuery plugin for reading, writing and deleting cookies.
0
votes
0answers
18 views
Setting cookies for language by using jQuery
I have more then 10 languages in my website. If the user has selected one language (ex. French), if they close the browser and visit the site again, it should remain that same language (French).
How ...
-1
votes
0answers
30 views
jQuery Trying to store link in cookie
So I created this product called Office. You can create documents. These documents changes are applied and set by form data. But they are obviously only set on that page.
For Example, heres the ...
0
votes
1answer
41 views
Read all available cookies: jQuery cookies
So I created this product called Office. You can create documents. These documents changes are applied and set by form data.
For Example, heres the Document Editor
Form data being, such as the name ...
0
votes
1answer
29 views
Checkbox check from cookie in a dynamically created checkbox array (jquery)
Many thanks for reading.
I have a paged dataset (created from SPRY XML Dataset) spanned in multiple pages.
I use jquery cookies https://github.com/carhartl/jquery-cookie to save which checkboxes are ...
1
vote
1answer
55 views
Make theme settings in Phonegap app persistent - with jQuery cookies
I've got an Phonegap app with different theme options. To make the theme selection persistent with each app start, I want to set a cookie with jQuery. But after each refresh in the browser (where I ...
3
votes
1answer
95 views
JQuery plugin use gives “undefined” error
Chrome on Rails on Localhost. Here's a trimmed version of the page:
<!DOCTYPE html>
<head>
<link ...
0
votes
1answer
31 views
Set jquery tabs cookie with button instead of tab
I am working on an page using jQuery tabs. The example shows how to set a cookie when a tab is selected. However, what I would like to do instead is to use a button to ask the user to make a ...
1
vote
1answer
45 views
setting value of a cookie - colon in the name
Im new to setting cookie values through javascript and my knowledge of both is basic - although Im comfortable with tweaking JQuery.
In summary, Im working on a web site which must display a cookie ...
1
vote
2answers
34 views
Storing touppercase() value in cookie and retrieving it in jQuery
I have a postcode lookup that stores a value as follows (using jQuery.cookie plugin)
$.cookie('delpostcode', $('#deliveryPostcode').val().toUpperCase(),{path: '/'});
This stores GL53%200DW
I then ...
0
votes
1answer
80 views
Using Intro.js and jquery.cookie to show intro only on first view of each url
I am using intro.js functionality across 3 different urls. I have limited it to show to users only the first time they load a page with:
unless $.cookie("firstview")? introJs().start()
$.cookie ...
0
votes
0answers
42 views
How can I set cookies in jQuery using jquery-cookie plugin?
I am trying to set cookie using the jquery-cookie plugin
https://github.com/carhartl/jquery-cookie
I have included the file jquery.cookie.js after the jQuery library
<script ...
0
votes
0answers
32 views
javascript cookie is not returning the value
I have a cookie that is being set by this function (page calendar.html):
function bookit(id){
document.cookie='eventid' + "=" + id;
document.location.href ="/sys/account.php";
}
After that the ...
0
votes
1answer
46 views
How can I get an array of the keys of all current javascript cookies?
I have links for various products. I am using php to add the product ID from the database as the id value for each link.
<a class="order_btn" id="<?php echo ...
0
votes
2answers
68 views
Jquery Cookie Code not working
<!-- Modal -->
<div id="appsmodal" class="modal hide fade" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button ...
1
vote
2answers
58 views
Why can't I expire a cookie with JavaScript (not HttpOnly)
I've got a cookie being set in a framework I'm developing within via JavaScript (the framework appears to be using https://github.com/carhartl/jquery-cookie). I'm developing within this framework but ...
1
vote
2answers
152 views
PHP sets COOKIE, changed with JQUERY COOKIE plugin, cannot be edited with php?
i'm using some simple code as a test as my page isn't working, maybe i'm missing something?! I have google for this problem and searched here but no one seems to have mentioned it! even on cookie tuts ...
0
votes
1answer
77 views
jquery tabs not updating cookie
I am using jquery UI 1.10 and I need to enable cookie in tabs. It used to work before.
But despite getting lokely lates jquery cookies 1.31 ...
0
votes
1answer
73 views
Jquery Cookie plugin and redirect
I have the following code which works but dosent perform as expected:
$(".switch_org").click(function(e){
var id = $(this).attr('id');
var orgID = id.split("_");
...
0
votes
1answer
28 views
Merging multiple cookies into one cookie good practice?
I could not find an answer for this question online. Is it good practice to combine multiple cookies into one single cookie to reduce http-requests? And if so, how should I do this. Should I use JSON ...
0
votes
0answers
36 views
Merging multiple jquery cookies into 1 and reading them out
I currently have a selection mechanism for non-registered users and around a maximum of 20 variables that I've set with cookies. To reduce http-requests I want to combine these cookies into one ...
0
votes
0answers
69 views
JQuery Cookies not working in my script
I have got the following jQuery code but it doesn't set a cookie.
Am I doing something wrong?
<script type="text/javascript">
$("#contact_min").toggle(function(){
$("#contact_min").animate({
...
1
vote
1answer
1k views
Accessing selection direction on an input element error
I'm trying to save the Javascript Array object in a cookie. But as it didn't work properly, I found the stringify() function in json.js file. Following is my code:
$(".save").on('click', function(){ ...
0
votes
4answers
308 views
Calling javascript function and also hitting a link in same anchor tag
Is this possible to call a javascript funciton(save cookies() here for example)before redirecting to a new page(sample.html in my example).
I need to save cookies before i navigate to new page.
a ...
1
vote
1answer
156 views
Cookie set before Ajax request but response use older cookie IE
I have some trouble with IE, I hope the last for this website…
So, I'm working with Wordpress and I have a couple of protected posts.
The template I have to use (chosen by the agency) loaded all post ...
1
vote
1answer
128 views
How to use the jQuery Cookie Plugin to make jQuery remember the animations after page reload
I'm trying to make sidebar like on Facebook. Well, not entirely. I just want to remember the state of jQuery after reload or after going to a different page. I don't understand how to use the cookie ...
0
votes
1answer
96 views
Remember jQuery hide or show after page refresh and setting up the Jquery cookie plugin
$(document).ready(function(){
var ScreenSizeHis = $.cookie(ScreenSizeHis);
$("#arrow").bind('click', function(){
$('#naviclosed').fadeIn("fast");
$(window).unbind('resize');
...
0
votes
1answer
57 views
Isotope and jquery.cookie
I've got an jquery isoptope that I filter with checkboxes. The value of the checkboxes are retrieved with jquery cookie and I want to set the initial filter using the values of the checkboxes. I've ...
0
votes
2answers
440 views
Getting jquery.cookie.js to read a cookie and redirect
I'm quite new to jQuery, and I'm trying to get the jQuery plugin, jquery.cookie.js to write a cookie, and then redirect based on the cookie value. Here's an outline of what I'm trying to accomplish:
...
0
votes
0answers
70 views
input range remember value with cookie
I've got an input type range
<input type="range" id="img_slider" name="img_slider" min="150" max="300" value="250" />
And it changes the value of all the images on the page with a ...
1
vote
0answers
91 views
How to show qTip ballon unless you click the “X” button
I have the next code
if ($.cookie('show-tooltip') != "false") {
$('#logo')
.qtip({
content: {
text: 'some text',
...
1
vote
3answers
139 views
Fail to write/read cookie with jQuery-cookie plugin
I need to write and read a cookie and I'd like to use the jquery-cookie plugin.
However I cannot manage to store a cookie and read it back.
Here's a MWE
<html>
<head>
...
2
votes
1answer
65 views
Delete old cookies on select option change
I have a select option and I want to save selected values in every click. This is my script
// on change deletes bill_client_id old values and set the new values
...
0
votes
0answers
145 views
(jQuery) Save input to cookie if value is equal to
I got this:
$("input.box").each(function() {
var mycookie = $.cookie($(this).attr('name'));
if (mycookie && mycookie == "true") {
$(this).prop('checked', mycookie);
}
});
...
0
votes
1answer
194 views
jQuery cookie that redirects to multiple domains
Here's what I'm trying to do:
Splash page on subdomain.domain1.com/splashpage.html
User clicks a button and is redirected to subdomain.domain1.com/landingpage.html OR ...
0
votes
0answers
40 views
Can't iterate JSON Object after getting from Cookie
I am using Jquery Coockie Plugin from GitHub https://github.com/carhartl/jquery-cookie.
I am getting JSON Object from Server and can iterate that and it works and adds to COOKIE since I need to ...
0
votes
1answer
141 views
Set multiple Cookies with jQuery cookie plugin in one line
I have been using the jquery Cookie plugin https://github.com/carhartl/jquery-cookie for some time. For setting multiple cookies, I usually do like this:
$.cookie('cookie1', 'value1');
...
0
votes
1answer
238 views
jQuery / Cookie popup issue
I was recently helped with this issue, but cannot get hold of the person who helped me.
The code bellow makes a popup show every 24 hours and creates a cookie that expires every day. The issue I'm ...
0
votes
1answer
129 views
how can we remove cookies on all pages on logout in jquery?
hey i am new to jquery and using mvc3 with jquery.
can anybody tell me how can we clear cookies on all pages from our website on clicking logout button using jquery?
on login button, my code is:
...
1
vote
2answers
115 views
jquery cookie, setting value of cookie each visit?
I am looking to have 3 different divs displayed
1 div on the 1st visit
2nd div on the 2nd visit
3rd div on the 3rd visit
I thought I had the code to make this happen but it is not working and I am ...
0
votes
1answer
145 views
issue with jquery cookie plugin
I'm using jquery cookie plugin to save data, the data is saved and i can read it but it's goes when i'm close the browser and open it again, i do programming for Samsung smart TV app, and the api ...
1
vote
3answers
205 views
Set Cookie On Javascript Switch Statement
I have this javascript switch statement:
function showSideMenu() {
switch (document.forms["culinaryrequest"].culinarytype.selectedIndex) {
case 0:
...
2
votes
2answers
176 views
Jquery Cookie Function
I'm still quite new to this so please bear with me. I have a function which adds a class on a click event, this works fine. But I would also like the clicked function to be saved as a cookie so when ...
2
votes
1answer
600 views
Using Bootstrap, have alert box remember close action
I am trying to create a Bootstrap alert box that remembers when users click the close button. I guess I need to store that information in a cookie. Ideally that cookie will only last for that current ...
0
votes
1answer
133 views
Cookie not saving in safari when adding to home screen
Hey i'm using the following code to set a cookie and get it :
$.cookie('SimMobileUsername', $('#user_id').val());
if($.cookie('SimMobileUsername') != "null" && ...
0
votes
4answers
121 views
How to set a cookie with jQuery in a PHP function
I have a very basic validation script using PHP, and I want to set a cookie with jQuery Cookie plugin if they are validated. Being very new to PHP, I don't know how to code a Javascript function here:
...
1
vote
1answer
197 views
jquery cookie increment each visit?
I am using jquery cookies plugin, in order to increment the value of the cookie each time a user comes to a page. I am doing this so I can display something on the first visit, then something ...
0
votes
1answer
165 views
Can I set the option raw: true when using jquery.cookie
I want to create a cookie with:
Name: drm
Value: drmStatus=Expected
I'm using the code from the answer to this question - Jquery Cookie plugin - multiple values? to create the cookie
var obj = { ...
1
vote
2answers
2k views
jQuery AJAX Reponse Set Cookie Header
I have a project which using a a REST API. Here when Isend a login request, they are sending me the response as JSON containg some data. Along with that in Response Header
...
0
votes
2answers
113 views
Fullcalendar with $.cookie not working
I have been trying to figure this out, and since I can't find any solution, I created a jsfiddle so someone might be able to help me.
I have fullcalendar with the jquery cookie plugin integrated, so ...
0
votes
0answers
102 views
storing special characters in cookies using jquery plugin
I want to store the cookies using jquery plugin(jquery.cookie.js). The cookies has some special characters. while storing the cookies in the browser the special character are converted to codes
...




