-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathform_charactor.js
More file actions
25 lines (22 loc) · 1.33 KB
/
form_charactor.js
File metadata and controls
25 lines (22 loc) · 1.33 KB
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
whvutil.autoLoad(function(){
var imprison5YearsSelect = document.getElementById("ctl00_ContentPlaceHolder1_character_imprisonment5YearsDropDownList");
var imprison12YearsSelect = document.getElementById("ctl00_ContentPlaceHolder1_character_imprisonment12MonthsDropDownList");
var removalOrderSelect = document.getElementById("ctl00_ContentPlaceHolder1_character_removalOrderDropDownList");
var deportedSelect = document.getElementById("ctl00_ContentPlaceHolder1_character_deportedDropDownList");
var chargedSelect = document.getElementById("ctl00_ContentPlaceHolder1_character_chargedDropDownList");
var convictedSelect = document.getElementById("ctl00_ContentPlaceHolder1_character_convictedDropDownList");
var investigationSelect = document.getElementById("ctl00_ContentPlaceHolder1_character_underInvestigationDropDownList");
var excludedSelect = document.getElementById("ctl00_ContentPlaceHolder1_character_excludedDropDownList");
var removedSelect = document.getElementById("ctl00_ContentPlaceHolder1_character_removedDropDownList");
var no = "No";
imprison5YearsSelect.value = no;
imprison12YearsSelect.value = no;
removalOrderSelect.value = no;
deportedSelect.value = no;
chargedSelect.value = no;
convictedSelect.value = no;
investigationSelect.value = no;
excludedSelect.value = no;
removedSelect.value = no;
return true;
});