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 comments

  • Eduardo 330

    @Eduard38655

    Submitted

    I need help with the js code. I couldn't find a way to remove the red dot, I really appreciate any feedback.

    @ShettyDhanushK

    Posted

    Your CSS looks good but your js is not working. Whatever you enter it gives an error. The solution is :

    1. First wrap all the input elements in a form. Note: Also remember to change the arrow button to a input of type submit and the form should also wrap this.
    2. Create a function for when the form is submitted using onSubmit attribute.
    3. In the function you will get a event as props in the function and you can access the values of the inputs by using event.target[0].value. Remember that the array in the target varies for different inputs and note it down to change it.
    4. Now you can store these values in variables and then you can use if else statements to check all the conditions.

    For any assistance you can check out my code: github

    0