Skip to content

How to get ul inside an li

This li item is generated dynamically I want to toggle li on the cate-label button click. for that, I did the following code when I try to hide item using ItemToHide.find(“.sub-cate”).hide(); it didn’t hide anything . I tried to find the length of the item using ItemToHide.find(“.sub-c…

Creating a Mega menu in react with loop

I have created a mega menu where the values will be dynamic (coming from the API). So you never know how many links will be there. But for testing purpose I’ve put 50 texts in array menu and trying to loop over that so that it look Like this . So there’s a parent row and inside that there are

Find most bought from array vue.js

I am trying to find which of the posts has the most bought… I’ve been trying for some time now, and this is my latest draft. I would really like to know if there is a smart way to do this through Vue js. Most of my struggles come from navigating the array. My first thought was to merge the

only one particle showing in the scene with three.js

I am trying to create a sphere with particles randomly floating on its surface. It will move depends on the position on mousemove. something like this Strangely, it is only displaying one particle on canvas. I am debugging with console.log(vertices), but it clearly shows all the vertices in the array. My code…