Partial View click event not fire
问题 My *.aspx Page (main page): function getEmployeeHours(employeeId,year,month) { $('#clocked-details').load('/Employees/GetEmployeeClockedHours/',{ 'employeeId': employeeId,'year': year,'month': month }); }; My partial view *.ascx : <td> <button id="btnSave" type="button" class="actionButton"> Save</button> </td> As above code snippet I need to accsess partial view btnSave from main view to trigger click event. I have written below code inside the main view. $('#btnSave').off('click').on('click