InterviewSolution
Saved Bookmarks
| 1. |
Check/uncheck An Input 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. |
|