Fill Following Details and Get Your Resume in A minutes.
Personal Details
Educational Details
Experience Details
`;// Displaying resume content on print page
var printWindow = window.open('', '_blank');
printWindow.document.write(resumeContent);
printWindow.document.close();setTimeout(function() {
printWindow.print();
}, 1000);}
// Function to add new educational detail input fields
function addNewEducation() {
var educationDetails = document.getElementById("educationDetails");
var newRow = document.createElement("div");
newRow.className = "row g-3";
newRow.innerHTML = `
`;
educationDetails.appendChild(newRow);
}// Function to add new experience detail input fields
function addNewExperience() {
var experienceDetails = document.getElementById("experienceDetails");
var newRow = document.createElement("div");
newRow.className = "row g-3";
newRow.innerHTML = `
`;
experienceDetails.appendChild(newRow);
}// Function to delete the row //
function deleteRow(button) {
button.parentNode.parentNode.remove();
}