$(document).ready(
function()
{
$('input[id^="btnRemoveCategory"]').bind(
'click',
function(){
if($('input[id^="chkIsBottom_":checked]'))
alert('YES YES YES!!!!');
else
alert('No NO no!!!!!');
I've tried with the:
if($('input[id^="chkIsBottom_"]').attr(checked))
also....
where is my mistake???
10x