Posts filed in JavaScript

Baseliner

Filed in: JavaScript

I’ve been experimenting with baseline grids and after created three tiling background images for various grid sizes I set about writing a tool to relieve me of this burden. A couple of hours later and I have an initial version of Baseliner ready to roll. It is currently based on jQuery (for personal efficiency, but [...]

Read more...

IFrame Document

Filed in: JavaScript

I forget somethings quite frequently. To take the bin out on a Monday morning. To open Google Reader. How to access an IFrame’s document. Writing this won’t help me with my refuse collection or my reading habits but it will help me remember how to access an IFrame’s document. var iframe_doc = document.querySelector(“#iframe_id”).contentWindow.document; What odds [...]

Read more...