skip to Main Content

Jquery on change function not working with asp.net

I have tried with the following code with live, change function. but not working live function is given below, $(function () { $('#txt_ToDate').live('change', function (e) { alert("hai"); var txt_FromDate = document.getElementById('txt_FromDate'); var txt_ToDate = document.getElementById('txt_ToDate'); txt_ToDate.value = txt_FromDate.value; }); });…

VIEW QUESTION
Back To Top
Search