-
Notifications
You must be signed in to change notification settings - Fork 0
/
duscript.js
167 lines (130 loc) · 3.1 KB
/
duscript.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*
Copyright 2021. Eduardo Programador
www.eduardoprogramador.com
All Rights Reserved
This file contains functions
for DOM HTML manipulations.
1) Include it on your HTML File
Eg.: <stript src="js/duscript.js"></script>
Invoke the functions...
*/
/*
Returns a new HTML object
*/
function ob(id) {
return document.getElementById(id);
}
/*
Returns a new style for an HTML object
*/
function S(id) {
return document.getElementById(id).style;
}
function val(id) {
return document.getElementById(id).value;
}
function valp(id,val) {
document.getElementById(id).value = val;
}
/*
turns the object visible
*/
function on(id) {
document.getElementById(id).style.visibility = "visible";
}
/*
changes some HTML code to an element
*/
function txt(obj,text) {
document.getElementById(obj).innerHTML = text;
}
/*
changes only the text of an html element
*/
function txt_(obj,text) {
document.getElementById(obj).innerText = text;
}
/*
turns the object visible
*/
function On(obj) {
document.getElementById(obj).style.display = "block";
}
/*
turns the object invisible
*/
function off(obj) {
document.getElementById(obj).style.visibility = "hidden";
}
/*
turns the object invisible removing the white spaces
*/
function Off(obj) {
document.getElementById(obj).style.display = "none";
}
/*
enables an HTML element
*/
function ON(obj) {
document.getElementById(obj).disabled = false;
}
/*
disables an HTML element
*/
function OFF(obj) {
document.getElementById(obj).disabled = true;
}
/*
adds some event to an HTML element id
Eg.: attach("myButtonId","click",function{
some code...
});
*/
function attach(obj,type,callback) {
switch(type) {
case "click":
document.getElementById(obj).onclick = callback;
break;
case "scroll":
document.getElementById(obj).onscroll = callback;
break;
case "focus":
document.getElementById(obj).onfocus = callback;
break;
case "change":
document.getElementById(obj).onchange = callback;
break;
case "over":
document.getElementById(obj).onmouseover = callback;
break;
case "leave":
document.getElementById(obj).onmouseleave = callback;
break;
}
}
/*
adds some event to the document root
Eg.: attach_("keydown",function(){'some code'})
*/
function attach_(type,callback) {
switch(type) {
case "keydown":
document.addEventListener("keydown",callback);
break;
default:
break;
}
}
/*
Changes the location hash of the document
*/
function to(hash) {
location.hash = hash;
}
/*
Makes an element focused
*/
function _in(id) {
document.getElementById(id).focus();
}