Israr
Israr
KPCKevin Powell - Community
Created by Israr on 6/21/2024 in #front-end
Navigating back to previous page
No description
3 replies
KPCKevin Powell - Community
Created by Israr on 5/8/2024 in #front-end
react-icon disappeared
I am facing this weird bug in my application. Some of my icons disappear, while inspecting with dev tools the SVGs are there but it doesn't appear in the UI. While trying to figure this out I got the solution but I want to know what coausing this what happens is if I set the size of icon 18 it appears anything below 18 it disappears again <ToolTipIcon size={18} /> this is visible but <ToolTipIcon /> this is not, but its SVG is there in the DOM
59 replies
KPCKevin Powell - Community
Created by Israr on 5/3/2024 in #front-end
Read more content to popup
No description
66 replies
KPCKevin Powell - Community
Created by Israr on 4/22/2024 in #front-end
Need help with the Tab active state
No description
5 replies
KPCKevin Powell - Community
Created by Israr on 4/20/2024 in #front-end
need Layout suggestion
No description
4 replies
KPCKevin Powell - Community
Created by Israr on 3/4/2024 in #front-end
is there a way to position absolute a scrollbar?
No description
22 replies
KPCKevin Powell - Community
Created by Israr on 3/1/2024 in #front-end
How can i create this shape with css
No description
39 replies
KPCKevin Powell - Community
Created by Israr on 12/11/2023 in #front-end
Doubt in Array and strings about the references
No description
5 replies
KPCKevin Powell - Community
Created by Israr on 11/13/2023 in #back-end
Fetch Confusion
fetch('https://jsonplaceholder.typicode.com/users')
.then((response) => {
return response.json();
})
.then((data) => {
console.log(data)
})
.catch((error) => {
console.log(error);
});
fetch('https://jsonplaceholder.typicode.com/users')
.then((response) => {
return response.json();
})
.then((data) => {
console.log(data)
})
.catch((error) => {
console.log(error);
});
I am learning JS. My question is when i am getting this object from fetch how do i use it outside fetch suppose i have to display all the names from the data on the webpage. how do i do that?
13 replies
KPCKevin Powell - Community
Created by Israr on 1/23/2023 in #front-end
Image file src problem
38 replies