JSFiddle - React, Tailwind, and code Playground

by Shree Khanal

HTML

<td><span id="stu1" class="reject-student ">Not Selected</span></td>
<td><span id="stu2" class="select-student ">Selected</span></td>
<td><span id="stu5" class="select-student ">Selected</span></td>

JavaScript

var selected = $(".select-student").map(function() {
   return this.id.split('stu')[1]; 
}).get();
alert(selected);