![]() |
What is the command for "Check All" ????
Hey.. I got a huge list of shit where I need to check some boxes...
Its like 1000 boxes I have to check the boxes on. Instead of checking each box, is there some control command that "checks all" that I can use? |
Quote:
nope you need to click on every box. |
Come on man.
|
ALT+F4 works in IE.
|
Quote:
Nice one Fucktard. |
ANyone?????
|
Hm I don't think there is a command for that.
Have you thought of writing up some simple js code to select them all? |
<!-- TWO STEPS TO INSTALL CHECK ALL:
1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- Modified By: Steve Robison, Jr. ([email protected]) --> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Begin var checkflag = "false"; function check(field) { if (checkflag hahahaha "false") { for (i = 0; i < field.length; i++) { field[i].checked = true;} checkflag = "true"; return "Uncheck All"; } else { for (i = 0; i < field.length; i++) { field[i].checked = false; } checkflag = "false"; return "Check All"; } } // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <center> <form name=myform action="" method=post> <table> <tr><td> <b>Your Favorite Scripts & Languages</b><br> <input type=checkbox name=list value="1">Java<br> <input type=checkbox name=list value="2">JavaScript<br> <input type=checkbox name=list value="3">ASP<br> <input type=checkbox name=list value="4">HTML<br> <input type=checkbox name=list value="5">SQL<br> <br> <input type=button value="Check All" onClick="this.value=check(this.form.list)"> </td></tr> </table> </form> </center> <p><center> <font face="arial, helvetica" size="-2">Free JavaScripts provided<br> by <a href="http://javascriptsource.com">The JavaScript Source</a></font> </center><p> <!-- Script Size: 1.47 KB --> |
Quote:
:1orglaugh :1orglaugh :1orglaugh |
I'm not sure if there is a button (or two) for a command like that!
|
Tab + Space Bar
1 thousand times. |
All times are GMT -7. The time now is 12:12 PM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123