I am having 100 Checkboxes on my webpage. For testing purposes I want to tick all those boxes, but manually clicking is time consuming. Is there a possible way to get them ticked?
Perhaps a JavaScript or Chrome Console window, anything?
|
I am having 100 Checkboxes on my webpage. For testing purposes I want to tick all those boxes, but manually clicking is time consuming. Is there a possible way to get them ticked? Perhaps a JavaScript or Chrome Console window, anything? |
|||||||
|
|
The most direct way would be to grab all your inputs, filter just the checkboxes out, and set the checked property.
If you happen to be using jQuery—and I'm not saying you should start just to tick all your checkboxes for testing—you could simply do
or as Fabricio points out:
|
|||||||||||||||
|
|
Pure JS method, don't use jQuery.. its just silly for something so trivial.
To use it on any webpage you can paste this into the address bar
then drag that to your bookmarks, and you have a bookmarklet. Just click it whenever you need to use it on a page. |
|||||||||||||||
|
|
by using jquery, simple as that
Or simply use
OR
|
||||
|
|
|
|
|||
|
|
|
This JS code will check all checkboxed in your page:
All you have to do then is create a bookmarklet with it, say, with this bookmarklet maker, which generates this bookmarklet code:
Just add this URI to a bookmark in your bookmark toolbar, then all you have to do is click it whenever you need all the checkboxes in your page to be checked. =] |
|||
|
|
On Click of a button call this method and pass the name of the element(checkboxes-they all should be same named). |
|||
|
|
Multiple Check All & Uncheck All BoxesAll You Need to change is the tag 'name' to change the what its turing ON/OFF
|
||||
|
|