vote up 0 vote down star

On the web 2.0 version of yahoo email you have the option to select all the emails with one click. I'm interested about how the yahoo maked the green checkedbox

flag

3 Answers

vote up 1 vote down check

You can style form elements in most modern browsers, the easiest way to do it might be with jQuery: http://www.jquery.com

There are some plugins that style form elements, and add the "check all" functionality.

link|flag
do you know any sample about stylizing checkbox using jquery? – dole doug Apr 5 at 12:57
Take a look at this one: code.google.com/p/jquery-checkbox – Moff Apr 5 at 16:31
vote up 0 vote down

I'd suppose they use JavaScript to toggle the state of the checkboxes:

var toggleCheckboxes = function(checkboxes, state) {
    for (var i = 0, l = checkboxes.length; i < l; i++)
        checkboxes[i].checked = state;
};
// usage:
var chks = document.getElementsByTagName('input');
// you could also filter this to only get inputs with "type=checkbox"
toggleCheckboxes(chks, true);
// true means we should check them. Use false to uncheck them.
link|flag
many thx moff, but I'm interested about that green checkbox background image. – dole doug Apr 5 at 10:24
vote up 0 vote down
function checkAll(list, state)
{
    for (i = 0; i < list.length; ++i)
    {
      list[i].checked = state ;
    }
}

You need to use something like

onClick="javascript:checkAll(document.myform.list, true)"
link|flag

Your Answer

Get an OpenID
or

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