Is it possible to implement "Remember Me" using jquery? If so, any suggestion how it can be done?

EDIT:

I am trying to remember username and password using jquery cookies.store cookies about username and password and read it the next time and redirect to a specific page.

link|improve this question

More information please. – amphetamachine Sep 30 '10 at 4:58
why would you store username and password as cookies? can't it be any other variables? – Reigel Sep 30 '10 at 5:02
@Reigel thats what i am asking suggestion how it can be done? Please suggest possible ways of doing it? – Chendur Pandian Sep 30 '10 at 5:03
it depends on what are you trying to achieve. I see you want to redirect to a page, but is it necessary for you to use username and password? username might be okay, but I doubt with password. why not something like username and logged ? logged would be a boolean with value depending if the user is logged or not. – Reigel Sep 30 '10 at 5:07
@Reigel logged holds a value True until the user logs out. Is that what you are trying to say? – Chendur Pandian Sep 30 '10 at 5:08
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

Look at this:

jQuery Cookie Plugin

How to implement:

link|improve this answer
@Naveed this isn't an answer what i was looking for. I know this plugin but i want suggestions to implement "Remember Me" using this jquery cookie plugin. – Chendur Pandian Sep 30 '10 at 5:06
@Pandiya Chendur: I have added a tutorial to implement this. – NAVEED Sep 30 '10 at 5:08
+1 this is an answer and I think don't deserve a -1. – Reigel Sep 30 '10 at 5:09
@Reigel i ve removed -1. But this answer uses password as cookie value. Is that secure? – Chendur Pandian Sep 30 '10 at 5:10
2  
I'm not really sure about security. But why would I put that on the risk. Well, that tutorial is the way to go. Use other variables as you like. You can use password if you really want to. I just don't suggest it. logged holds a value True until the user logs out. is what i'm suggesting. – Reigel Sep 30 '10 at 5:13
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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