Notebook: User Interfaces
Responsive images without Javascript
Responsive development owes its roots to the mobile-age challenge of scaling content onto handheld screens. Images are a key focus of many responsive... Read on →
Detect when a stylesheet finishes loading
Sometimes it’s nice to be able to trigger an action when a resource is loaded, usually by simply attaching a handler to the resource’s onload... Read on →
Welcome Adobe Edge
Adobe just announced a new tool (“Edge”) for helping developers produce interactive content based on HTML5, CSS3, and a healthy dose of javascript.... Read on →
Find an input label in jQuery
Find the label wrapping a user-input control $.fn.findLabel = function() { var tags = {'input':1,'textarea':1,'select':1}; Read on →
Masking images with CSS and jQuery
Ever wanted to add a pretty frame or porthole effect to images uploaded through a content management system? Just a few lines of jQuery and a custom CSS class... Read on →
Hooking WordPress media uploading in plugins
WordPress features a user-friendly media management system that takes all the mystery of FTP out of uploading, editing, and presenting multimedia to blog... Read on →