Upon clicking the link, I aim to accomplish three tasks:
- Implement smooth scrolling down to #form
- Automatically focus on the textarea for immediate message writing
Add extra top margin to account for a fixed top bar on the website.
<a class="link" href="#form">Proceed to form</a> <div id="form" style="padding-top: 100px; margin-top: -100px;"> <textarea class="textarea"></textarea> </div>
I have included this code for the top margin adjustment:
padding-top: 100px; margin-top: -100px;
Although I am attempting to use jQuery, I am facing challenges in getting all features to work together seamlessly.