Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Request failed with status code 502
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @freaky4wrld

    Submitted

    Hey there all I hope you doing well, here's question

    in my validateDate() function, it has some browser compatibility issue, like safari and firefox are providing me what I need, but chrome here is making auto adjustment, which I don't want

    Well a lot to learn in js got pretty much messed with my code....... do share your views on the solution

    Thanks for all your appreciation and valuable advice :)

    symo-058 220

    @symo-058

    Posted

    You can use the code below to animate your output. function animateCount(outputDays,ageDays) { let currentValue = 0; const interval = setInterval(() =>{ if (currentValue < ageDays) { currentValue++; outputDays.textContent = currentValue; } else { clearInterval(interval); } }, 25);

    0
  • Dan 820

    @Gitit2meBaby

    Submitted

    I struggled with positioning absolute throughout this project. Way too much 'magic number' picking to line things up, and in the end I'm not at all happy with the end product. I would love to hear any tips from others who tackled this project.

    symo-058 220

    @symo-058

    Posted

    Hey there. Your solution looks great but still you can use the code below to output your events in real time. Replace the HTML elements with your own and still you can check out my code. inputNumber.addEventListener('keyup', function(){ outputNumber.textContent = inputNumber.value; });

    0