Tagged Questions
-1
votes
0answers
32 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
42 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 ...
1
vote
1answer
47 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
0answers
43 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
33 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 ...
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
155 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 ...
1
vote
1answer
79 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
76 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
72 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
323 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
159 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
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',
...
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
240 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 ...
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
177 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 ...
0
votes
1answer
135 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
1answer
169 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
1answer
75 views
browser cookie. and other options for achieve the same effect
How would I create a cookie that would store the randomly added body class for one browser session or for one day. My intention would be to randomly give every user a body background image and then ...
0
votes
2answers
377 views
jquery.cookies not working in IE8
I am using this plugin to establish a cookie
Everything works well but in IE7 & IE8
Here is my JS code:
jQuery(document).ready(function() {
jQuery(function() {
if ...
0
votes
1answer
115 views
Set a browser cookie for element
How would I create a cookie that would store the randomly added body class for one browser session or for one day. My intention would be to randomly give every user a body background image and then ...
1
vote
2answers
1k views
Javascript: Change CSS File Dynamically + Cookie
I want to change the used CSS File (<link href="..." />) dynamically using only javascript and to save changes in cookies.
This is a jQuery version that does what I want (ref), but how can I do ...
0
votes
1answer
196 views
Cookie adding another entry instead of replacing existing value
I am using the popular jquery cookie plugin to set a session cookie value via javascript like so:
function ChangeLoginUser(sel) {
var selectedUser = sel.options[sel.selectedIndex].value;
...
1
vote
1answer
301 views
Can the Jquery Cookie plugin only read cookies that it sets?
Can the Jquery Cookie plugin only read cookies that it sets?
I am using an IFrame to display a page inside a jQuery Mobile page (date-role="page). The Iframe, uses a page that is asp.net forms ...
-4
votes
1answer
79 views
Stop future instances [closed]
When we entered in to a website, by default a fancybox will appear that users will close it after reading, just like a welcome box.
We need to add an anchor (i.e. "Stop Future Instances"), that when ...
2
votes
2answers
1k views
jquery cookie set value to boolean true
I am using this jquery.cookie plugin and I need to set value to TRUE or NULL/FALSE.
I am trying to do it like this: $.cookie('ff', true, { expires: 30, path: '/' }); but it sets the value to string ...
0
votes
4answers
565 views
How can I check if a cookie has been set using jQuery?
I am using the following code:
$('#theme').attr('href', $.cookie("jquery-ui-theme"));
This works if the cookie has already been set. But how can I make a default href if the cookie has not yet been ...
2
votes
1answer
1k views
jQuery cookies not working in IE
I'm setting cookies using jquery-cookies and appending a comma on every entry so it looks like this:
"ee337,ee389,ee347,etc."
I'm doing this like this:
if($.cookie('oswfav') == null){
...
0
votes
3answers
677 views
Cookies and multiple browser windows/tabs
I'm trying to share some information between browser windows/tabs, and I'm leery of HTML5 local storage because of browser support issues. Some googling lead me to believe cookies can be used for ...
0
votes
3answers
804 views
Set a cookie on first time page load
How can I set a cookie with jquery cookie, only the first time browser loaded and if not exists without affecting this
$('.family-filter').click(function(){
if ($.cookie('ff') == ...
4
votes
1answer
3k views
How do I store an array of objects in a cookie with jQuery $.cookie()?
I have a list of javascript objects:
var people = [
{ 'name' : 'Abel', 'age' : 1 },
{ 'name' : 'Bella', 'age' : 2 },
{ 'name' : 'Chad', 'age' : 3 },
]
I tried to store them in a browser ...
0
votes
1answer
336 views
jQuery.cookies won't load dynamically (with jQuery getScript etc)
I am trying to create a session deletion method for cookies on logout.
Cookies with a certain start key need to be deleted, so I have made a little javascript that works.
Trying to keep all my ...
1
vote
1answer
1k views
jstree - node selection based on current navigated url
Today I'm using the built-in cookies of the jsTree in order to preserve user navigations in the tree.
on node click in the tree the user is redirected to the corresponding page in my site and the ...
0
votes
2answers
462 views
Calling a function based on jQuery Cookie
I am a bit confused and might be missing something in front of my face.
I am using jQuery cookie to create a cookie in my page. The code is:
var $j = jQuery.noConflict();
...
1
vote
2answers
2k views
jQuery Cookie Not Working in IE 8?
EDIT: I was having an issue with the cookie below so I switched to jQuery Cookie and still the error persist so I posted the jQuery Cookie code here but left my original question intact:
On one page ...
2
votes
2answers
649 views
Create a cookie based on select menu option?
I'm trying to create a select menu in a way that when users select an option and click on the continue button, a cookie is created with the contents of the option. The code directly below works, but ...
5
votes
2answers
935 views
jQuery tabs with cookie - If cookie exists?
I have this code:
jQuery(document).ready(function($) {
$( "#tabs" ).tabs({
collapsible: true,
fx: { height: 'toggle', duration: 'fast'},
cookie: { expires: ...
0
votes
2answers
1k views
How do I hide a div with jQuery and keep it hidden using a cookie?
I'm trying to hide a div named #video-toggle, and have that div remain hidden on subsequent page loads using a cookie. I'm a complete jQuery newbie and I have no idea what I've been doing wrong.
All ...
11
votes
3answers
33k views
Create a cookie if (and only if) it doesn't already exist
I want to:
Check to see if a cookie with name of "query" exists
If yes, then do nothing
If no, create a cookie "query" with a value of 1
Note: I am using jQuery 1.4.2 and the jQuery cookie plugin.
...
4
votes
2answers
3k views
Is using the jQuery Cookie plugin a valid way of testing to see if cookies are enabled?
I have a site that we require the user to have enabled JavaScript and cookies before they can login to the site. (The JS part is done and works perfectly.) At the moment, we have been been setting a ...


