I have this table in which I am able to generate rows for through a jquery click event.
Is it possible to keep my dynamic html after the pages model validation triggers with just the basic jquery library or should I use something else like ajax or the like in my MVC project?
If you mean, keep that state after a form has been submitted, you’ll need to save that HTML fragment somehow e.g in a $_SESSION variable and then reload it on the next page.