Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adi- countries #9

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Conversation

AdiAmar1
Copy link

No description provided.

.then(countries => {
const template=document.querySelector(".country[data-country-name]")
const grid=document.querySelector(".countries-grid");

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ensure template and grid are not null

dropdownItems.forEach(item => {
item.addEventListener("click", (event) => {
const region = event.target.getAttribute("data-region");

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Check if data-region is missing before proceeding.
if (!region) return;

dropdownWrapper.classList.toggle("open");
});

document.addEventListener("click",(event)=>{
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a check to ensure dropdownWrapper and dropdownHeader exist to avoid potential errors if they are not present in the DOM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants