This topic is locked

how do I set the remember me checkbox to checked?

3/30/2012 1:58:52 PM
PHPRunner General questions
author

I would like the default to be checked. how do I set the remember me checkbox to checked?

C
cgphp 3/30/2012

In the "Javascript onload" event of the "Login page", enter the following code:

$("input[type='checkbox']").attr("checked","checked");
500511 3/30/2012



In the "Javascript onload" event of the "Login page", enter the following code:

$("input[type='checkbox']").attr("checked","checked");



thanks Cristian

as always, you are the best