JSFiddle - React, Tailwind, and code Playground

by shriek

HTML

<body>
<div class="whatever-1">Whatever 1</div>
<div class="whatever-2">Whatever 1</div>
<div class="whatever-3">Whatever 1</div>
</body>

JavaScript

test =  $("div").filter(function(){ return /whatever-.+/.test(this.class) } );
console.log(test);