I have a div that contains a register wizard, and I need hide/show this div when a button is clicked. How can I do this?
div
Below I show you t
This can't be done with just HTML/CSS. You need to use javascript here. In jQuery it would be:
$('#button').click(function(e){ e.preventDefault(); //to prevent standard click event $('#wizard').toggle(); });