Skip to content Skip to sidebar Skip to footer

How To Display The Value Get From .val()

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();

With this:

$('#status_table').find("#output_newrow_" + textInput).remove();

and try again!


Post a Comment for "How To Display The Value Get From .val()"