Hi All,
I have a set of checkbox items and a toggle button. When user click on the toggle button, it will reset all the checkbox items from selected to unselected. But how can i accomplish this task using jQuery? can I use method something like (assume i have the code below)
$("#toggleButton").button();
$("#checkboxes").buttonset();
function toggleButtonClick()
{
$("#checkboxes").refresh(); //I tried this one but it doesn't work
}
Thanks,
Sam.