I implemented a radio button that successfully scrolls the page to a specific div when clicked.
Here's the HTML code for the Radio Button:
<input type="radio" id="tab" onclick="document.getElementById('mydivID').scrollIntoView();" name="tabs1" class="input">
One enhancement I am seeking is to make the scroll smooth. Is it possible to achieve this?