JSFiddle - React, Tailwind, and code Playground

by Superman

HTML

<select class="businessTypePullDown">
    <option value="" disabled selected>Business Type</option>
    <option value="1">General</option>
    <option value="2">Lawyer</option>
    <option value="3">Software Development</option>
    <option value="4">Auto-repair</option>
</select>

JavaScript

function filterPullDown () {

    alert('hello');
}

$(".businessTypePullDown").change(filterPullDown);