Embedding a Google Doc in HTML

Someone asked about collaboration tools and the ability to embed them on an HTML page. My immediate thought was, “Sure, this is possible…right?” I did not know it would be as easy as to embed an editable Google Document in an iframe. Never thought about doing that before. So something like this: So just treat […]

Force move to top of browser with jQuery

I have a website where I needed the user when they clicked a button to go back to the top of the page. For some reason, scrollTop() in jquery did not work and window.scroll in native javascript could not get to work either. So I added this oneliner suggested by Nizam at: $(‘html, body’).animate({ scrollTop: […]