Ævie
Ævie
KPCKevin Powell - Community
Created by Ævie on 6/3/2024 in #front-end
mobile height issue
that was a typo, meant svw
6 replies
KPCKevin Powell - Community
Created by Ævie on 11/27/2022 in #front-end
Loop Mouseover Issues
hey this doesn't really pertain to this thread, but since you've helped me a lot, I wanted to ask I'm really trying to get a good portfolio done(which this is like the first project I really have), so I can get a jr job in this field, and Idk if this project is enough or too much? Do you know what kind of things companies look for? Maybe have some advice for me getting hired as mostly self taught?
11 replies
KPCKevin Powell - Community
Created by Ævie on 11/27/2022 in #front-end
Loop Mouseover Issues
I did this for the 2nd issue with no luck
document.querySelectorAll('.min b').forEach(elem => elem.addEventListener('mouseover', (event) =>
{...
document.querySelectorAll('.min b').forEach(elem => elem.addEventListener('mouseover', (event) =>
{...
11 replies
KPCKevin Powell - Community
Created by Ævie on 11/27/2022 in #front-end
Loop Mouseover Issues
I thought I had to declare const before using it?
11 replies
KPCKevin Powell - Community
Created by Ævie on 11/27/2022 in #front-end
Loop Mouseover Issues
this did work thank you ❤️
11 replies
KPCKevin Powell - Community
Created by Ævie on 11/22/2022 in #front-end
Checking multiple innerHTMLs
I really appreciate the time you've taken to help me ❤️ I still feel like a noob at js after 6 months lol
24 replies
KPCKevin Powell - Community
Created by Ævie on 11/22/2022 in #front-end
Checking multiple innerHTMLs
I can add the date in a data attribute, but how do would I select them by the date? when I try, I get the first one every time, or node list
if(document.querySelectorAll('[date]') !== Months[date.getMonth()] + ' ' + date.getDate())
{
console.log(document.querySelectorAll('[date]')[1])
}
if(document.querySelectorAll('[date]') !== Months[date.getMonth()] + ' ' + date.getDate())
{
console.log(document.querySelectorAll('[date]')[1])
}
24 replies
KPCKevin Powell - Community
Created by Ævie on 11/22/2022 in #front-end
Checking multiple innerHTMLs
yes
24 replies
KPCKevin Powell - Community
Created by Ævie on 11/22/2022 in #front-end
Checking multiple innerHTMLs
24 replies
KPCKevin Powell - Community
Created by Ævie on 11/22/2022 in #front-end
Checking multiple innerHTMLs
I have multiple created divs that I'm trying to add a date to, and have it display when the header is changed to a different date. I thought it would be best to just add to every created div a the date when it was created via innerHTML, but it won't let me check the innerhtml for that date
24 replies
KPCKevin Powell - Community
Created by Ævie on 11/22/2022 in #front-end
Checking multiple innerHTMLs
this returns undefined
24 replies
KPCKevin Powell - Community
Created by Ævie on 11/22/2022 in #front-end
Checking multiple innerHTMLs
like this right^
24 replies
KPCKevin Powell - Community
Created by Ævie on 11/22/2022 in #front-end
Checking multiple innerHTMLs
document.querySelectorAll('.selected-entry-day').forEach(elem => elem.innerHTML)
document.querySelectorAll('.selected-entry-day').forEach(elem => elem.innerHTML)
24 replies
KPCKevin Powell - Community
Created by Ævie on 11/22/2022 in #front-end
Checking multiple innerHTMLs
I'm not understanding what is happening here, when I give an index, it shows the one element when needed, but I'm not sure how to make it do it for all the elements at once
24 replies
KPCKevin Powell - Community
Created by Ævie on 11/22/2022 in #front-end
Checking multiple innerHTMLs
const adjustDay = () =>
{
headerDate.innerHTML = Months[date.getMonth()] + ' ' + date.getDate();
console.log(document.querySelectorAll('.selected-entry-day')[1].innerHTML)
document.querySelectorAll('.entry-main').forEach(elem => elem.style.display = "none")
if(document.querySelectorAll('.selected-entry-day').innerHTML === headerDate.innerHTML)
{
document.querySelector('.entry-main').style.display = "block"
}
}
const adjustDay = () =>
{
headerDate.innerHTML = Months[date.getMonth()] + ' ' + date.getDate();
console.log(document.querySelectorAll('.selected-entry-day')[1].innerHTML)
document.querySelectorAll('.entry-main').forEach(elem => elem.style.display = "none")
if(document.querySelectorAll('.selected-entry-day').innerHTML === headerDate.innerHTML)
{
document.querySelector('.entry-main').style.display = "block"
}
}
24 replies
KPCKevin Powell - Community
Created by Ævie on 11/15/2022 in #front-end
CSS Position Fixed Issue
I was not aware that of these differences
4 replies
KPCKevin Powell - Community
Created by Ævie on 11/15/2022 in #front-end
CSS Position Fixed Issue
thank you ❤️
4 replies
KPCKevin Powell - Community
Created by Ævie on 11/11/2022 in #front-end
Local Storage Noob
it works ❤️ thank you so much this was really frustrating me
21 replies
KPCKevin Powell - Community
Created by Ævie on 11/11/2022 in #front-end
Local Storage Noob
okay
21 replies
KPCKevin Powell - Community
Created by Ævie on 11/11/2022 in #front-end
Local Storage Noob
const descriptionValue = document.querySelector('.description-input').value

if(descriptionValue)
{
const entryArray =
{
Descriptions: descriptionValue
};
localStorage.setItem('descriptions', JSON.stringify(entryArray));
console.log(entryArray)
}
const descriptionValue = document.querySelector('.description-input').value

if(descriptionValue)
{
const entryArray =
{
Descriptions: descriptionValue
};
localStorage.setItem('descriptions', JSON.stringify(entryArray));
console.log(entryArray)
}
21 replies