Search
-
Recent Posts
- To Do: Efficient, Future-Friendly Front End Strategy
- An Event Apart SF 2011 – Resources and Sound Bites – Part 2
- An Event Apart SF 2011 – Resources and Sound Bites – Part 1
- Dynamic Height Cross Domain Iframe postMessage Javascript
- Exclude custom post types from wordpress search – do not use exclude_from_search
- CSS Resources from Wordcamp SF 2011
- Color Numbers in Ordered List with CSS Counter() and :Before Pseudo-Element
- How To Show The Full Content of Multi-Page/Paginated Posts in the Feed WordPress (content after nextpage tag)
Topics
Author Archives: admin
line breaks in alt attribute using css white-space property
I recently had to put a bunch of text in the alt attribute of an image, that I wanted to display with line breaks: [code lang="html"][/code] There is only one way that I found that was able to render the … Continue reading
How To Use Multiple Onload Functions in Javascript – addLoadEvent
Onload functions are used when you want something to happen as soon as the page is loaded. Here is an example of how you could write it, placing it in the head of the document: [code lang="html"]window.onload = someFunction;[/code] The … Continue reading