// Add another company function addCompanyDriver () { var id = document.getElementById("companyId").value; $("#listCompanies").append("
"); id = (id - 1) + 2; document.getElementById("companyId").value = id; document.getElementById("companyCount").value++; } // Remove an element by id from the application (ex: id = #somediv) function removeLast(id, count) { // id = element id to remove // count = number of existing enteries (e.g., how may felonies) document.getElementById(count).value--; $(id).remove(); } // Add another company function addCompanyMechanic() { var id = document.getElementById("companyIdMechanic").value; $("#listCompaniesMechanic").append(""); id = (id - 1) + 2; document.getElementById("companyIdMechanic").value = id; document.getElementById("companyCountMechanic").value++; } // Remove an element by id from the application (ex: id = #somediv) function removeLast(id, count) { // id = element id to remove // count = number of existing enteries (e.g., how may felonies) document.getElementById(count).value--; $(id).remove(); }