I have a simple html5 mp3 player that I found online. The player is a little bit of a scroll down from when the page loads, so when I press play or stop, the page pops up to the top out of sight of the player.I also have some other script on the page so I'm wondering if that would cause it. Is there anything I can add to my script to get the page to stay still when the player is used?thanks in advance\[code\]<script> $(document).ready(function(){ $("#play-bt").click(function(){ $("#audio-player")[0].play(); $("#message").text("Music started"); }) $("#pause-bt").click(function(){ $("#audio-player")[0].pause(); $("#message").text("Music paused"); }) }) </script> <audio id="audio-player" name="audio-player" src="http://www.ep.dev/songs/robin.mp3" ></audio> <div id="message">ROBIN - From "Snow in June"</div><br /> <a id="play-bt" href="http://stackoverflow.com/questions/14064652/#">PLAY</a> | <a id="pause-bt" href="http://stackoverflow.com/questions/14064652/#">PAUSE</a> | \[/code\]