Looking to keep the header section of my webpage sticky at the top while allowing the content section to scroll over it? I need a solution using JavaScript or jQuery that will achieve this effect.
Here is the HTML structure:
<div id="header">
<h3>I want this header to stay fixed at the top! </h3>
</div>
<div id="content">
<h3>I want this content to scroll over the header when the user scrolls.</h3>
</div>