Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried inserting a variable in cookie name

jQuery.cookie("box'+ variablename +'","open", {expires: 365});

What am i doing wrong here?

share|improve this question
3  
You're mixing up your quotes. – Andrew Barber Aug 7 '12 at 14:14
1  
Let's assume variablename's value is the string cookies. Do you want the result to be box'cookies' or boxcookies? – Xyan Ewing Aug 7 '12 at 14:17

3 Answers

up vote 6 down vote accepted
jQuery.cookie("box"+ variablename ,"open", {expires: 365});
share|improve this answer

You forgot the a " before and after the +.

jQuery.cookie("box'"+ variablename + "'","open", {expires: 365});
//-----------------^-----------------^

Do you really want the ' inside of the string? You probably don't. In that case lose the 's.

jQuery.cookie("box"+ variablename, "open", {expires: 365});
share|improve this answer

the name of cookie you are trying to save will look like this

box'VariableName'

Remove the single parenthesis.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.