JSFiddle - React, Tailwind, and code Playground

by Riccal

HTML

<input type="text" id="11" class="tasks" value="0"/>
<input type="text" id="2" class="tasks" value="2"/>
<input type="text" id="3" class="tasks" value="0"/>
<input type="text" id="42" class="tasks" value="5"/>
<input type="text" id="5" class="tasks" value="0"/>

CSS

.item1{
    background:red;
}
.item2{
    background:green;
}
.item3{
    background:blue;
}
.item4{
    background:yellow;
}

JavaScript

$(".tasks").each(function(i,valuec){
   var collected = $(this).attr("id");
   var value = $(this).val();
   var values  = collected+' : '+value;
    alert(values);
});