Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All solutions

  • Submitted


    What are you most proud of, and what would you do differently next time?

    In this project I worked a lot with managing the inputs without using the mouse. I intentionally left the clear all button out of scope of keyboard interection. You can select radio button pressing enter. This will also press the submit button automatically

    What challenges did you encounter, and how did you overcome them?

    I faced a lot of challenges. there is a lot of event listeners. their proper ordering was very cognitive resourse intensive.

    What specific areas of your project would you like help with?

    in github pages if I use the relative path it doesn't work. I must need to use the absolute path. is there a way to use the relative path.

  • Submitted


    What are you most proud of, and what would you do differently next time?

    Add to cart button was the most annoying also fun to build. It didn't work because of mismanagement of eventlisteners. A lot searching was needed but as a result I can now handle the eventlisteners descent.

    What challenges did you encounter, and how did you overcome them?

    bug1: I needed to use buttons(plus & minus) inside button(add to card). When I added event listeners to all of them I faced a bug. The number of the product wasn't incrementing by pressing the plus button, decrement also not working. The reason was (add to cart) button's event listeners also getting signal along with the plus and minus buttons. I needed to use event.stopPropagation() method to solve this.

    bug 2: when I pressed at the middle(without pressing the plus & minus) same product was getting added to the cart multiple time. I just needed to turn off the eventListeners after once. So I just used {once: true}. That's how I solved the second bug.

    What specific areas of your project would you like help with?

    I think I have done well according to my little knowledge. Any professional recommentation is appreciated.

  • Submitted


    What are you most proud of, and what would you do differently next time?

    I am mostly proud of the way I pulled of the text sizing without using the media query. To pull that off I used the font-size: clamp(14px, 2vw, 16px); I don't know if it is alright. but I learned this new.

    What challenges did you encounter, and how did you overcome them?

    when i was adding the padding the div's size was getting bigger which I didn't want. To solve that I needed to use box-sizing: border-box; this is an amazing css property that I learned doing this project.

    What specific areas of your project would you like help with?

    the border radius of the image. when i scale down the image's border radius disappears. This happens because the image is getting zoomed in. how should I solve this? should I use div then inside that img?