Subscribe
-
Recent Posts
- CSS properties that can potentially be used to replace images
- iPad orientation script
- Windows 8 Application Development Reference
- Scrolling content in fixed-height container for iPad
- Twitter User Feed jQuery Plugin
- sessionStorage and localStorage
- Embedding Youtube and HTML5 Video Option
- @fontface, Google’s WebFont Loader and Cufon
- Bing Map v7 Address Query using jQuery
- Stylesheet for Print
- insertAdjacentHTML
- Lazy Loading Asynchronous JavaScript
- Honoring Steve Jobs
- Facebook Login using OAuth 2.0 Protocol
- Fake PageRank
- Live website tracking
- Nice SEO tips from RSS Pieces
- Digital Media for Brands
- Changing Default jQuery AJAX properties
- Great tool for interacting with Canvas or creating Canvas applications
Archives
Categories
random music video
If you think you need some lovin - Pomplamoose
-
What's My Name
Blogroll
Meta
Tag Archives: JavaScript
Bing Map v7 Address Query using jQuery
How to initialise Bing map using an street address query. First reference the Bing library, keeping it as an external reference. They changed one of their JavaScript urls once and 404ed on me. There are references for both SSL and … Continue reading
insertAdjacentHTML
Interesting article from http://hacks.mozilla.org/2011/11/insertadjacenthtml-enables-faster-html-snippet-injection/ “On the computer that I used for testing, the innerHTML way of appending managed to append only slightly over 200 tweets in five full seconds. In contrast, the insertAdjacentHTML(“beforeend”, …) way of appending managed to append … Continue reading
Lazy Loading Asynchronous JavaScript
Useful article for keepsake, with a good dose of requirements that I like: Small. I don’t want a big mess for them to include on their sites. 10-15 lines, tops. Stand-alone. The environment is unknown, so we can’t rely on … Continue reading
ASCII art and old-game nostalgia
http://js1k.com/2011-dysentery/demo/923 Remembering the really old games, with better appreciation for the ASCII art-work and great story lines.
JavaScript 3D engine called Three
I’m reading up on the API and looking through the examples of Three, a JavaScript 3D engine by Mr.Doob. A little eye-candy to perhaps get one started – 1. Open up Chrome, ensure it is the latest version. 2. Have … Continue reading
JavaScript read for today
http://bonsaiden.github.com/JavaScript-Garden/
Writing better performing JavaScript (with jQuery)
1. Detach the element from the DOM to do funky stuff with it var child = $(‘#chilID’); var parent = child.parent(); child.detach(); child.doLotsOfStuff(); parent.append(child);
Study mode…
Will be shutting down all media distractions until I’m finished with this. Some things in the world are free and damn good, thanks to Addy Osmani and many who teach like him.
JavaScript Caching
Improving JavaScript performance in general and improving it by caching has been on my mind recently. It is good to understand and remember raw JavaScript without the library and to remember to cache stuff even with the convenience of the … Continue reading

