So I have a few elements:
HTML:
<button class="btn-post">Post</button>
<button class="btn-post">Post</button>
<button class="btn-post">Post</button>
<button class="btn-post">Post</button>
As you can see, these buttons have the class btn-post
and when someone clicks a button and activates an event.
I want to replace all the btn-post
classes with btn btn-success
(btn
and btn-success
)
Any helpful advice?