10 examples of 'hide div in javascript' in JavaScript

Every line of 'hide div in javascript' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
31function hide_div(id){
32 $(id).hide('slow');
33}
137function hideDiv(id) {
138 jQuery('#' + id).hide();
139}
54function hideDiv(div) {
55 $(div).hide();
56}
115function ShowHide (divName, show)
116{
117 var div = document.getElementById (divName);
118 if (show) {
119 div.style.display = 'block';
120 } else {
121 div.style.display = 'none';
122 }
123}
158function hideDiv(div) {
159 var pdiv = "#" + div,
160 button = pdiv + "-toggle"
161
162 if ($(pdiv).css('display') == 'none') {
163 $(pdiv).toggle('slow');
164 $(button).html('Hide');
165 }
166 else {
167 $(pdiv).toggle('slow');
168 $(button).html('Show');
169 }
170}
34function showHideDiv(id) {
35 var spanElement = document.getElementById('span_' + id);
36 var arrowElement = document.getElementById('arrow_' + id);
37 if (spanElement.style.display == 'block' || spanElement.style.display == '') {
38 spanElement.style.display = 'none';
39 arrowElement.className = 'right_arrow';
40 } else {
41 spanElement.style.display = 'block';
42 arrowElement.className = 'down_arrow';
43 }
44}
32function showHideDiv(id) {
33 var div = document.getElementById(id);
34 if ( div ) {
35 if ( div.style.display != "none" ) {
36 div.style.display = "none";
37 } else {
38 div.style.display = "";
39 }
40 }
41}
28function showhide(div) {
29 if ( document.getElementById(div).style.display == 'block') {
30 document.getElementById(div).style.display = 'none';
31 }
32 else {
33 document.getElementById(div).style.display = 'block';
34 }
35 }
38function hideDiv(divname)
39{
40 getRef(divname).style.visibility = "hidden";
41 getRef(divname).style.display = "none";
42}
25function hideDiv(id) {
26 var div = document.getElementById(id);
27 if ( div ) {
28 div.style.display = "none";
29 }
30}

Related snippets