Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

123
Views
How to pass dynamically created element that exists in a function to other separate functions in JavaScript?

I've created a function that dynamically creates some elements, and I want to access those elements from other separate functions. From my understanding I have to pass those elements I've created to the other functions... but I don't understand how.

let lightBoxEnabled = document.querySelectorAll(".lightbox-gallery-element");

function createLightbox() {
    const lightboxContainer = document.createElement('div');
    lightboxContainer.classList.add('lightbox-container');
    lightboxContainer.classList.add('active');
    body.append(lightboxContainer);

    const lightboxImageWrapper = document.createElement('div');
    lightboxImageWrapper.classList.add('lightbox-image-wrapper');
    lightboxContainer.append(lightboxImageWrapper);

    const lightboxImg = document.createElement('img');
    lightboxImg.classList.add('lightbox-img');
    lightboxImageWrapper.append(lightboxImg);

}

lightBoxEnabled.forEach(image => {
    image.addEventListener('click', () => {
        createLightbox();
    });
});

function hideLightBox() {
    body.classList.remove('overflow-hidden');
}

lightboxContainer.addEventListener('click', (e) => {
    hideLightBox();
});
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!