How To Display The Value Get From .val() November 10, 2024 Post a Comment I have this code here but it doesn't work... I have a text input where user can key in any number. When user click on ADD, it will add a new row to the table. when click on REMOVE,Solution 1: Replace this:$('#status_table').find("#output_newrow_'+textInput+'").remove(); CopyWith this:$('#status_table').find("#output_newrow_" + textInput).remove(); Copyand try again! Share Post a Comment for "How To Display The Value Get From .val()"
Post a Comment for "How To Display The Value Get From .val()"