Browse
For agents
About
Mailchimp List Subscribe Form
/
1.6.0
Mailchimp List Subscribe Form
v1.6.0
Switch version
1.2.4
1.2.5
1.2.6
1.2.7
1.2.8
1.2.9
1.3
1.4
1.4.1
1.4.2
1.4.3
1.4.4
1.4.5
1.5
1.5.1
1.5.2
1.5.3
1.5.4
1.5.5
1.5.6
1.5.7
1.5.8
1.5.9
1.6.0
1.6.1
All 55 releases
Overview
Code
mailchimp
/
assets
/
js
/
hidecss.js
hidecss.js
in Mailchimp List Subscribe Form 1.6.0, at assets/js/hidecss.js
15 lines
383 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
/*
show/hide on checkbox click
*/
2
//
eslint-disable-next-line no-unused-vars -- used on window on click
3
function
showMe
(
box
)
{
4
const
chboxs
=
document
.
getElementsByName
(
'
mc_nuke_all_styles
'
)
;
5
let
vis
=
'
none
'
;
6
for
(
let
i
=
0
;
i
<
chboxs
.
length
;
i
++
)
{
7
if
(
chboxs
[
i
]
.
checked
)
{
8
vis
=
'
none
'
;
9
}
else
{
10
vis
=
'
'
;
11
}
12
}
13
document
.
getElementById
(
box
)
.
style
.
display
=
vis
;
14
}
15