Kullandığım kod
<script>
$(document).ready(function() {
$('#clickMe').click(function(){
cagir();
});
});
var total = 15;
//$(".row-select input[type=checkbox]").length;
var a = 0;
var next = false;
function cagir() {
$(".row-select input[type=checkbox]").eq(a).attr("checked", "checked");
var checkedIds = $(".row-select .checkbox:checked").map(function() {
Mail_Check(this.name,this.id);
})
$(".row-select input[type=checkbox]").eq(a).attr("checked", false);
a++;
setTimeout(function() {
if( a < total )
{
cagir();
}
}, 8000);
}
</script>
Bu kod sonrası, kendi sitemde soru soran üyelere "biraz siz uğraşın" cümlesini söylediğim aklıma geldi nedense :confused: