jQuery OrgChart is a plugin that allows you to render structures with nested elements in a easy-to-read tree structure. jQuery Org Chart – a plugin for visualising data in a tree-like structure →
Tag Archives: javascript
Javascript Codec/File Format Implementations
Over the past few months, quite a few Javascript implementations to creating/displaying certain files without the need for native plugins have been created. Although some are still premature, the basic idea is there. Above that they clearly demonstrate the importance of the rendering/scripting speed improvements browser vendors have been/are implementing into their browsers. pdf.js: Rendering …
Continue reading “Javascript Codec/File Format Implementations”
punycode.js
A robust javascript Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms Allows you to do stuff like: // encode/decode domain names punycode.toASCII(‘mañana.com’); // ‘xn--maana-pta.com’ punycode.toUnicode(‘xn--maana-pta.com’); // ‘mañana.com’ punycode.toASCII(‘☃-⌘.com’); // ‘xn—-dqo34k.com’ punycode.toUnicode(‘xn—-dqo34k.com’); // ‘☃-⌘.com’ // encode/decode domain name parts punycode.encode(‘mañana’); // ‘maana-pta’ punycode.decode(‘maana-pta’); // ‘mañana’ punycode.encode(‘☃-⌘’); …
Photoshop-style blend modes for HTML Canvas Contexts
Adobe Photoshop has a variety of helpful blend modes for compositing images from multiple RGBA layers. This small library provides the same functionality for HTML Canvas Contexts, with the goal of producing the same results as Photoshop. Allows you to do stuff like: // Likely an ‘offscreen’ (not in the DOM) canvas var over = …
Continue reading “Photoshop-style blend modes for HTML Canvas Contexts”
Instagram Unshredder Challenge: Javascript Solutions
Recently the engineers at Instagram challenged the interwebs to write some code that unshreds a chopped up image. Some of us took the liberty of solving the problem in Javascript, although it wasn’t one of the languages suggested. Solution by Joe Lambert Solution by Ron Ilan Solution by Diego Ferreiro Be sure to check and …
Continue reading “Instagram Unshredder Challenge: Javascript Solutions”
Moment.js
Using Cors
Using the Browser Developer Tools to their full potential
Are you using the developer tools to their full potential? The biggest positive about the developer tools is that they are incredibly easy to use, but as a result developers often miss out on a large proportion of the functionality provided. Inspired by a video talk by Paul Irish and Pavel Feldman, I’ve compiled a …
Continue reading “Using the Browser Developer Tools to their full potential”
jQuery Transit
CodeKit
CodeKit automatically compiles Less, Sass, Stylus & CoffeeScript files. It effortlessly combines, minifies and error-checks Javascript. It even optimizes images, auto-reloads your browser and lets you use the same files across many projects. And that’s just the first paragraph. From the creators of Less.app CodeKit → via Andy