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
Added a new class to all text boxes 'student_grde'
And jquery to
$('#save_grade_button').click(function (){ $.each($('.student_grde'), function(i, item) { var grade = $('#student_grde_G['+i+']').val(); alert(grade); }); });