2010-11-30 8 views

Antwort

2

Hier ist ein einfaches Plugin für Cookies jquery: https://github.com/carhartl/jquery-cookie

var userCookie = $.cookie("userName"); 
if(userCookie){ 
    // userName cookie exists 
    $("#username").val(userCookie) 
} 

Und auf dem Passwort-Feld konzentriert ist so einfach wie

$("#password").focus() 
Verwandte Themen