.login()

Previous Next

Logs in.

Returns the 'this' object.

Syntax

.login( userpasswordoptions )

 

options  ::=  {

    page:  page

,   success:  success-function

,   error:  error-function

}

The required user is a string that identifies the user. The required password is a string that defines the password.

Options is a struct that can have the following items, all of which are optional.

Page is a string that defines the page to jump to or a function to call on success.

Success-function is a function called after the operation has successfully completed.

Error-function is a function called if an error occurs.

 

Examples

$.udb.login('ABC','DEF');
$.udb.login('ABC','DEF',{page:'MyFirstPage'});
$.udb.login('ABC','DEF',{success:function(){alert('Welcome!');}});