javascript - move data from table1 to table 2 using jquery -
i have question. tried implement display data in table button click. trying move data table below continue table. in code, when enter input value json object , click submit button, data display in table continue button , empty table below.when click continue data in above table should move table located below continue button.
i got worked work if click submit button second time.. trying implement scenario clicking continue button. suggestions? here code [link http://jsfiddle.net/e254w/11/]
yes, simplest 1 (imo)
$('#continue').click(function(){ $("#submitid").click(); });
just submit once , continue clicking on continue
button.
Comments
Post a Comment