forked from fluxbb/fluxbb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.js
32 lines (26 loc) · 1002 Bytes
/
common.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
function select_checkboxes(curFormId, link, new_string)
{
var curForm = document.getElementById(curFormId);
var inputlist = curForm.getElementsByTagName("input");
for (i = 0; i < inputlist.length; i++)
{
if (inputlist[i].getAttribute("type") == 'checkbox' && inputlist[i].disabled == false)
inputlist[i].checked = true;
}
link.setAttribute('onclick', 'return unselect_checkboxes(\'' + curFormId + '\', this, \'' + link.innerHTML + '\')');
link.innerHTML = new_string;
return false;
}
function unselect_checkboxes(curFormId, link, new_string)
{
var curForm = document.getElementById(curFormId);
var inputlist = curForm.getElementsByTagName("input");
for (i = 0; i < inputlist.length; i++)
{
if (inputlist[i].getAttribute("type") == 'checkbox' && inputlist[i].disabled == false)
inputlist[i].checked = false;
}
link.setAttribute('onclick', 'return select_checkboxes(\'' + curFormId + '\', this, \'' + link.innerHTML + '\')');
link.innerHTML = new_string;
return false;
}