Aldrin
Aldrin
KPCKevin Powell - Community
Created by Aldrin on 3/20/2024 in #os-and-tools
Security error, There are problems with the security certificate for this site
No description
12 replies
KPCKevin Powell - Community
Created by Aldrin on 3/18/2024 in #front-end
Pre Set Select Option
No description
5 replies
KPCKevin Powell - Community
Created by Aldrin on 2/20/2024 in #front-end
how to match both the filter value to lower case
here how can i get the classList to lowerCase
function filterResults() {
const filter1Value = filter1.value;
const filter2Value = filter2.value;
// Get values of additional filters as needed
filteredList.forEach((el) => {
if (
el.classList.contains(`${filter1Value.toLowerCase()}`) &&
el.classList.contains(`${filter2Value.toLowerCase()}`)
) {
el.style.display = "block";
} else {
el.style.display = "none";
}
});
}
function filterResults() {
const filter1Value = filter1.value;
const filter2Value = filter2.value;
// Get values of additional filters as needed
filteredList.forEach((el) => {
if (
el.classList.contains(`${filter1Value.toLowerCase()}`) &&
el.classList.contains(`${filter2Value.toLowerCase()}`)
) {
el.style.display = "block";
} else {
el.style.display = "none";
}
});
}
5 replies
KPCKevin Powell - Community
Created by Aldrin on 9/28/2023 in #front-end
Window.onclick
i have this weird issue where window.onclick is not triggering my code looks something like this
window.onload = () => {
window.onclick = function() {
console.log('Click event triggered');
// Your code here
};
}
window.onload = () => {
window.onclick = function() {
console.log('Click event triggered');
// Your code here
};
}
23 replies
KPCKevin Powell - Community
Created by Aldrin on 9/15/2023 in #front-end
anyone know how this kind of website can be developed?
13 replies
KPCKevin Powell - Community
Created by Aldrin on 9/8/2023 in #front-end
Page loader
Is it possible to display actual page loading progress like from 0% to 100%?
6 replies
KPCKevin Powell - Community
Created by Aldrin on 9/7/2023 in #front-end
Dragging webpage Horizontal and vertical
http://christmas.rogue.studio/ can anyone give a rough idea on how to create a dragging webpage like the above website
1 replies
KPCKevin Powell - Community
Created by Aldrin on 9/4/2023 in #front-end
backdrop filter to svg path
How can i add backdrop filter to svg path?
4 replies
KPCKevin Powell - Community
Created by Aldrin on 8/31/2023 in #back-end
Multiple Apache2 vhosts are pointing to the same website, how to i fix this?
Multiple Apache2 vhosts are pointing to the same website, how to i fix this?
1 replies
KPCKevin Powell - Community
Created by Aldrin on 8/28/2023 in #front-end
Html Class List
14 replies
KPCKevin Powell - Community
Created by Aldrin on 8/28/2023 in #front-end
Barba js Issue
Do anyone know how to re run the whole script, after barba js page transition? here is a small demo, i have gsap animation to each page, but after page transition the animation don't work, please help............. https://jazzy-dango-8a7c99.netlify.app/
6 replies
KPCKevin Powell - Community
Created by Aldrin on 8/21/2023 in #front-end
Pass value on function
14 replies
KPCKevin Powell - Community
Created by Aldrin on 7/27/2023 in #front-end
Border Image for video
5 replies
KPCKevin Powell - Community
Created by Aldrin on 6/13/2023 in #front-end
I want to create a transparent circle that grows on scroll, and that has a background
7 replies
KPCKevin Powell - Community
Created by Aldrin on 6/4/2023 in #front-end
scale down cursor size on hover over links
8 replies
KPCKevin Powell - Community
Created by Aldrin on 5/23/2023 in #front-end
Slider
3 replies
KPCKevin Powell - Community
Created by Aldrin on 5/18/2023 in #front-end
Why border radius now working on table
6 replies
KPCKevin Powell - Community
Created by Aldrin on 4/29/2023 in #front-end
Get innerHtml with forEach loop
53 replies
KPCKevin Powell - Community
Created by Aldrin on 4/26/2023 in #front-end
Grid Layout
4 replies
KPCKevin Powell - Community
Created by Aldrin on 2/9/2023 in #front-end
SVG path
2 replies