Bangladesh Embellishment Engineers Forum

Announcements

Call for Anchors & Announcers – BDEEF Annual Get Together 2025

Dear Members of BDEEF,Assalamualaikum,To ensure a lively and well-organized BDEEF Annual Get Together 2025, we are looking for two members...
Read More
Screen Printing

Factors considered during print costing

Screen Printing

Screen Printing Trends: Staying Relevant in the Digital Era

Print Defects

Common Print Defects

Screen Printing

Screen Printing

Mesh

Mesh Mastery:

Scroll to Top
document.addEventListener('DOMContentLoaded', function() { // Education const addEduBtn = document.querySelector('#add-education'); const eduContainer = document.querySelector('#education-fields'); addEduBtn.addEventListener('click', () => { const clone = eduContainer.querySelector('.education-group').cloneNode(true); clone.querySelectorAll('input').forEach(input => input.value = ''); eduContainer.insertBefore(clone, addEduBtn); }); eduContainer.addEventListener('click', function(e){ if(e.target && e.target.classList.contains('remove-education')){ const groups = eduContainer.querySelectorAll('.education-group'); if(groups.length > 1){ e.target.closest('.education-group').remove(); } else { alert("At least one education entry is required."); } } }); // Employment const addEmpBtn = document.querySelector('#add-employment'); const empContainer = document.querySelector('#employment-fields'); addEmpBtn.addEventListener('click', () => { const clone = empContainer.querySelector('.employment-group').cloneNode(true); clone.querySelectorAll('input').forEach(input => input.value = ''); empContainer.insertBefore(clone, addEmpBtn); }); empContainer.addEventListener('click', function(e){ if(e.target && e.target.classList.contains('remove-employment')){ const groups = empContainer.querySelectorAll('.employment-group'); if(groups.length > 1){ e.target.closest('.employment-group').remove(); } else { alert("At least one employment entry is required."); } } }); });