I\'m having a hard time with getting the value of my dynamically appended textboxes. I\'m using the $.each function to iterate all of the textboxes according to
$.each
You do not have element with id student_grde_G[] Use wild card starts with.
student_grde_G[]
starts
Live Demo
$('#save_grade_button').click(function () { $.each($('[id^=student_grde_G]'), function (i, item) { var grade = $(this).val(); alert(grade); }); });