Click here to Skip to main content
15,886,840 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have calander image, on click of which div is popup which has table.

i want to check user has selected date or not.

I tried following, but its not working
$('.ajax__calendar_days > table > tbody').find('tr').each(function(){
                $(this).find('td').click(function(){
                    alert('hi');
                });
            });


may i know where i'm going wrong

or is there any other way to check the text in the textbox(that holds date) has changed using jquery.
even i tried for this following, but was not working
$('#Tbl_Selection').find('tr').each(function(){
$(this).find('input').change(function(){
                    $('#ctl00_cphPage_btnExpExcel').prop('disabled', true);
                    $('#ctl00_cphPage_hdExpExcel').val('1');
                });
});


Any help??
thanks in advance
Posted
Updated 12-Jul-13 0:36am
v2
Comments
Jameel VM 12-Jul-13 8:25am    
can you post the table structure of calender?
ZurdoDev 12-Jul-13 12:04pm    
Is this a calendar plugin or something you just created?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900