ME
ME
KPCKevin Powell - Community
Created by ME on 3/11/2024 in #front-end
Problem in removing event listener
No description
7 replies
KPCKevin Powell - Community
Created by ME on 8/17/2023 in #front-end
Event doesn't work
i have a div which has a child div. something like
<div>
<div></div>
</div>
<div>
<div></div>
</div>
the first div covers the second div fully, so i want to create an event for the second div but because of the second i can't. till now i have tried pointer-events and changing the z-index.
10 replies
KPCKevin Powell - Community
Created by ME on 7/7/2023 in #front-end
syntax question
I know that the null coalescing operator has been introduced but in a project I need a similar function like the
isset()
isset()
in php. Or is it that a reference will be truthy or falsey
3 replies
KPCKevin Powell - Community
Created by ME on 6/2/2023 in #back-end
move_uploaded_file() function shows error!
I am on windows. I am using XAMPP. So when I use this function
move_uploaded_file($_FILES['image']['tmp_name'], $destine);
move_uploaded_file($_FILES['image']['tmp_name'], $destine);
Problem is there is a warning coming which says that this file does not exist. I have searched it up and it says to make that file writable but I didn't understand.
6 replies
KPCKevin Powell - Community
Created by ME on 5/21/2023 in #front-end
Any good reason to continue jQuery?
I have been too much adjusted to jQuery eventhough es6+ is an option, the animations are so easy to use... I have also been trying to replicate jQuery any suggestions? BTW the jquery min js would be fast enough right?
6 replies
KPCKevin Powell - Community
Created by ME on 5/2/2023 in #front-end
IntersectionObserver API
I want a page in which when I scroll the element comes in view. I have tried this out with matching the element's offset with the scrolled height of the page, but it did not work. Is there any other way without this api?
6 replies