I want to hide all div's with specified class. I know how to do it with id, but not find examples for class.
<button class="button"
on="tap:box.hide">hide</button>
<div class="box">text</div>
<div class="box">text</div>
I want to hide all div's with specified class. I know how to do it with id, but not find examples for class.
<button class="button"
on="tap:box.hide">hide</button>
<div class="box">text</div>
<div class="box">text</div>
Copyright © 2021 Jogjafile Inc.
Instead of using class DOM object, add amp-bind library and add AMP.setState:
This unhide all data in div's on click.