checkbox

Object for managing checkboxes on the current page (INPUT tag type CHECK)



Example of a checkbox:
Checkbox code : input type="checkbox" name="qwer" value="checkbox" ALIGN="" id="123":>

INPUT tag it is one of the versatile elements of the form and allows you to create different interface elements and provide interaction with the user. Input is mainly used for creating text fields, various buttons, radio buttons, and checkboxes. Although the input element does not need to be placed inside the form container that defines the form, if the data entered by the user must be sent to the server where the server program processes it, then you must specify form. The same is true for data processing using client applications, such as JavaScript scripts.

The main attribute of the input tag that defines the type of element is type. It allows you to set the following form elements: text field (text) field with password (password), the switch (radio), checkbox (checkbox), hidden field (hidden), button (button), the button to submit the form (submit) button to clear the shape (reset) the send file (file) and a button (image). Each element has its own list of attributes that define its appearance and characteristics. In addition, HTML5 has added more than a dozen new elements.

More information about the INPUT tag (source)

For the $checkboxobject - this is the INPUT tag with the CHECK



basic functionality
Clicks on all checkboxes
Change the selection state
Get the selection state




Clicks on all checkboxes

click_all – click on all elements



Change the selected state

check_by_number – check by number
check_by_name – check by name
check_by_value – check by value
check_by_attribute – check by attribute value

check_by_attribute_by_form_number – check the attribute value in the form with the specified number
check_by_attribute_by_form_name – check the attribute value in the form with the specified name

check_all – check all elements



Get the selection state

is_check_by_number – check checkability by number
is_check_by_name – check checkability by name
is_check_by_value – check checkability by value
is_check_by_attribute – check checkability by attribute value