[Solved] Insert a Table Row using jQuery
I think this is what you may be looking for. This will dynamically add a new row to your equipment table, and create a new drop down list, which is populated. <!DOCTYPE html> <html> <head> <title>Equipment</title> <script type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js”></script> <script type=”text/javascript”> var rows = 0; function addMoreEquipment() { rows++; var options = [{ name: “Item … Read more