I have this span that is in a loop and produce multiple results.
what I want is the attribute recordID value when its checked
<span id="row" index="<?php print $i; ?>" recordID="<?php print $row->ID; ?>" Color="<?php print $row->Color; ?>">
<input type="checkbox" style="left:10;" />
</span>
Ben onay kutusunu tıklanan olmadığını kontrol etmek için benim js dosyasında bu kullanıyorum
var test = $('input:checkbox:checked').val();
alert(test);
And all I get is on
how can I get attribute value
Thanks