Danya Kholodny
Results
2
comments of
Danya Kholodny
can you send example?
Hi! It's very easy! I hope you understand. ``` $("#toggle-event").change(function() { if ($('#toggle-event').is(":checked")){ $('.divforhide').hide(); //multi hide all divs $('.divfordisplay').css('display', 'inline'); //multi show all divs //or: $("#first,#second,#third,#etc").hide() //multi hide all id's...