MiCl
0
Q:

how to make div visible and invisible in javascript

elem.style.display = 'none'; // hide
elem.style.display = 'block'; // show - use this for block elements (div, p)
elem.style.display = 'inline'; // show - use this for inline elements (span, a)
1

New to Communities?

Join the community