Notes
Notes - notes.io |
$(document).ready(function () {
var rowIndex = 0;
// Add button click event
$("#addbutton").click(function () {
// Your existing code for adding rows...
// Retrieve values from form fields
var expType = $("#ExpType").val();
var orgName = $("#org").val();
var designation = $("#Designation").val();
var fromDate = $("#txtFromDate").val();
var toDate = $("#txtToDate").val();
var description = $("#Description").val();
// Check if all fields are filled
if (expType && orgName && designation && fromDate && toDate && description) {
// Calculate duration
var fromdate = new Date(fromDate);
var todate = new Date(toDate);
var duration = Math.floor((todate - fromdate) / (1000 * 60 * 60 * 24 * 30));
if (duration < 36 || duration === '' || duration === undefined) {
alert("You must have Minimum 3 Years Experience in Ms Office and Database Software.");
return false;
}
// Append new row to the table with form field values
var newRow = "<tr data-index='" + rowIndex + "'>" +
"<td>" + expType + "</td>" +
"<td>" + orgName + "</td>" +
"<td>" + designation + "</td>" +
"<td>" + fromDate + "</td>" +
"<td>" + toDate + "</td>" +
"<td>" + description + "</td>" +
"<td>" + duration + "</td>" +
"<td><input type='button' class='btn arrow remove' value='Remove'></td>" +
"</tr>";
$("#experienceTable2").append(newRow);
rowIndex++;
// Clear form fields after adding
$("#ExpType").val("");
$("#org").val("");
$("#Designation").val("");
$("#txtFromDate").val("");
$("#txtToDate").val("");
$("#Description").val("");
}
});
// Next button click event
$("#btnNextSubmit").click(function () {
// Store row data in hidden field
var rowsData = $("#experienceTable2 tbody").html();
$("#hiddenRowsData").val(rowsData);
});
// Remove button click event
$("table").on("click", ".remove", function () {
$(this).closest("tr").remove();
});
// Reload dynamically added rows on page load
var storedRowsData = $("#hiddenRowsData").val();
if (storedRowsData) {
$("#experienceTable2 tbody").html(storedRowsData);
}
});
|
Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 12 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team