Resume BuilderPersonal Details
Name:
–
Date of Birth:
–
Mother’s Name:
–
Father’s Name:
–
Height:
–
Weight:
–
Gender:
–
Blood Group:
–
Marital Status:
–
Religion:
–
Nationality:
–
Languages Known:
–
Hobbies
Hobbies:
–
Work Experience
Work Experience:
–
Technical Skills
Technical Skills:
–
Contact Details
Mobile:
–
Email:
–
Address:
–
Academic Qualifications
| Qualification | Board/University | Year | Percentage |
|---|
| – | – | – | – |
| – | – | – | – |
| – | – | – | – |
`);
printWindow.document.close();
printWindow.focus();
// Wait for content to load, then print
setTimeout(() => {
printWindow.print();
}, 500);
}
// Initialize preview
updatePreview();
// Add smooth scrolling for mobile navigation
document.addEventListener('DOMContentLoaded', function() {
// Auto-scroll to preview on mobile after form submission
if (window.innerWidth <= 768) {
form.addEventListener('submit', function(e) {
setTimeout(() => {
const preview = document.getElementById('biodataPreview');
preview.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}, 100);
});
}
});
// Handle orientation changes
window.addEventListener('orientationchange', function() {
setTimeout(updatePreview, 100);
});
// Add touch-friendly interactions
if ('ontouchstart' in window) {
document.body.classList.add('touch-device');
}