JSFiddle - React, Tailwind, and code Playground
by Alex Cowan
HTML
<button id='search-btn'>
poo
</button>
JavaScript
$("#search-btn").on("click", function() {
//code that filters goes here
console.log("search button click!");
});
by Alex Cowan
<button id='search-btn'>
poo
</button>
$("#search-btn").on("click", function() {
//code that filters goes here
console.log("search button click!");
});