diff --git a/Wino.Mail/JS/reader.html b/Wino.Mail/JS/reader.html
index b8ea23f5..df8c2b68 100644
--- a/Wino.Mail/JS/reader.html
+++ b/Wino.Mail/JS/reader.html
@@ -35,8 +35,13 @@
// Called when rendering a new email for the first time
function RenderHTML(htmlString, shouldLinkifyText = true) {
+
+ // Reset scroll to top
window.scroll(0, 0);
+ // Clear any existing selection
+ window.getSelection().removeAllRanges();
+
_htmlString = htmlString;
_shouldLinkifyText = shouldLinkifyText;