Latest solutions
Latest comments
- @02fede02@zaks276
Hello Federico. Great job on the solution. It looks amazing.
To answer your question, both methods are fine however in my experience the image tends to load more slowly when you do the render in Javascript instead of hiding the HTML and then displaying it via Javascript. Generally too much Javascript tends to slow down websites.
Hope this was helpful.
Marked as helpful - @Cv1CC1@zaks276
Hello Luka.
- You forgot to set the cursor to pointer when hovering over the buttons. Just set the
cursor: pointer
wherever you have the:hover
CSS psuedo-class. - Also you can use the defer attribute in your script tag so you can put it in the
<head>
tag instead of at the bottom of the<body>
tag.
Other than that, great job. Your solution looks great. I hope this was helpful
Marked as helpful - You forgot to set the cursor to pointer when hovering over the buttons. Just set the
- @amit-kumar-18@zaks276
Hello Amit. Good job on the solution. I like the little animation. Its a nice touch.
- To remove the border on the submit button use
border: none;
in your CSS. - As for the slow loading image, I believe it is due to rendering the thank you window via Javascript. I've noticed the same effect with other solutions that used this method.
I hope this was helpful.
- To remove the border on the submit button use
- @dgdev1024@zaks276
Hello Dennis.
Good work on the solution it looks great. However it is a little big compared to the original design. I recommend using Greenshot to get the measurements for the component so the solution can be as close to the design as possible.
I hope this was helpful
- P@EdwinSch@zaks276
Hello Ed. Good job on the design, your solution looks great. I have some tips for you, you should consider using tags such as
<main>
or<article>
etc instead of only<div>
. Also you can use the defer attribute in your script tag so you can put it in the<head>
instead of at the bottom of the<body>
tag. I hope this was helpful.Marked as helpful