Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // reveals "JS_show" containers
- if ( document.getElementsByTagName("JS_show")[0] ) /* check if JS_show containers exist */ {
- for (
- count=0; // initiate counter
- count < document.getElementsByTagName("JS_show").length; // count JS_show containers
- count++ // count up. Same as count+=1 and count=count+1.
- ) {
- // restore opacity and/or unhide by overriding CSS at the top using inline CSS:
- document.getElementsByTagName("JS_show")[count].setAttribute("style","display:block; opacity:1; pointer-events:all;");
- }
- }
- // == generate check boxes before running code ==
- var main_form=document.getElementsByTagName("form")[0]; // shortcut variable
- var checkbox_count=0; // defeating JS Hint error; no functional difference
- for (
- checkbox_count=2; // start at the second check box; the first already is already in the HTML for preview to non-JavaScript users
- checkbox_count <= 24; // add check boxes until there are 24.
- checkbox_count++ // count up
- ) {
- // create element (does not matter which)
- main_form.appendChild(document.createElement("span"));
- // add next box through HTML string
- main_form.lastElementChild.outerHTML='\n <input type="checkbox" id="item'+checkbox_count+'" name="item'+checkbox_count+'" value="'+checkbox_count+'">\n <label for="item'+checkbox_count+'">Item '+checkbox_count+'</label><br />';
- }
- // == main code ==
- var count=0; // Declaring variable for "for" loops to defeat JS Hint error; no functional difference.
- var MultiSelect = {}; // main object
- MultiSelect.select_form = function(form_number) {
- MultiSelect.current_boxes=document.getElementsByTagName("form")[form_number].getElementsByTagName("input");
- MultiSelect.number_of_boxes=document.getElementsByTagName("form")[form_number].getElementsByTagName("input").length-1; // correcting off-by-one error since length is shifted up by one.
- };
- MultiSelect.select_range = function(form_number) {
- MultiSelect.select_form(form_number); // select form out of multiple
- // find first checked box; prevent overrunning the last box and causing exception if none selected.
- MultiSelect.first_checked_box=0;
- while (! MultiSelect.current_boxes[MultiSelect.first_checked_box].checked && MultiSelect.first_checked_box < MultiSelect.number_of_boxes) {
- MultiSelect.first_checked_box++;
- }
- // find last checked box by counting down from end
- MultiSelect.last_checked_box=MultiSelect.number_of_boxes;
- while (! MultiSelect.current_boxes[MultiSelect.last_checked_box].checked && MultiSelect.last_checked_box > 0 ) {
- MultiSelect.last_checked_box--;
- }
- MultiSelect.current_box=MultiSelect.current_boxes[MultiSelect.first_checked_box+1];
- for (
- count=MultiSelect.first_checked_box;
- MultiSelect.current_box != MultiSelect.current_boxes[MultiSelect.last_checked_box];
- count++
- ) {
- MultiSelect.current_box = MultiSelect.current_boxes[count];
- MultiSelect.current_box.checked = true;
- }
- };
- // select every box
- MultiSelect.select_all = function(form_number) {
- MultiSelect.select_form(form_number);
- for (
- count=0;
- count < MultiSelect.number_of_boxes+1;
- count++
- ) { MultiSelect.current_boxes[count].checked=true; }
- };
- // deselect every box
- MultiSelect.select_none = function(form_number) {
- MultiSelect.select_form(form_number);
- for (
- count=0;
- count < MultiSelect.number_of_boxes+1;
- count++
- ) { MultiSelect.current_boxes[count].checked=false; }
- };
- // deselect selected boxes, select unselected boxes
- MultiSelect.invert_selection = function(form_number) {
- MultiSelect.select_form(form_number);
- for (
- count=0;
- count < MultiSelect.number_of_boxes+1;
- count++
- ) {
- if (MultiSelect.current_boxes[count].checked) {
- MultiSelect.current_boxes[count].checked=false;
- } else {
- MultiSelect.current_boxes[count].checked=true;
- }
- }
- };
- MultiSelect.zebra_select = function(form_number) {
- MultiSelect.select_form(form_number);
- var zebra_select_next=false; // reset to "false"
- for (
- count=0;
- count < MultiSelect.number_of_boxes+1;
- count++
- ) {
- /* switch selection mode */
- // check if box after current one exists to prevent exception from occuring
- while (MultiSelect.current_boxes[count+1] && MultiSelect.current_boxes[count].checked && count < MultiSelect.number_of_boxes) {
- zebra_select_next ? zebra_select_next=false : zebra_select_next=true;
- count++; // skip over already selected boxes
- }
- MultiSelect.current_boxes[count].checked=zebra_select_next;
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement