SyntaxFix
Write A Post
Hire A Developer
Questions
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(); });