Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to implement "Remember Me" using jquery cookies?

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.

like image 458
ACP Avatar asked Sep 30 '10 04:09

ACP


1 Answers

Look at this:

jQuery Cookie Plugin

How to implement:

  • Store login information in cookie using jQuery
  • Using Simple JavaScript
like image 164
Naveed Avatar answered Sep 27 '22 17:09

Naveed