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: […]

Watermarking photos: Yes or No

Someone in my Twitter feed asked about adding watermarks to photos. I told her a couple of ways to watermark photos ( which I will tell you at the end). But let me take a moment to make an argument and a plea. First, an argument against certain types of watermarks. Try not having watermarks […]