1.

How Can We Check/uncheck An Checkbox In Jquery?

Answer»

Using TWO function, we can PERFORM the OPERATION.

// Check #X $(“#checkboxid”).attr(“checked”, “checked”);
// Uncheck #x $(“#checkboxid”).removeAttr(“checked”);

Using two function, we can perform the operation.

// Check #x $(“#checkboxid”).attr(“checked”, “checked”);
// Uncheck #x $(“#checkboxid”).removeAttr(“checked”);



Discussion

No Comment Found