“The jQuery Taconite Plugin allows you to easily make multiple DOM updates using the results of a single AJAX call. It processes an XML command document that contain instructions for updating the DOM.”
#jquery
Moving Jetpack Sharing Buttons
I’m working on a new WordPress theme (for this site, and it’ll be released for download once complete). The theme is deeply integrated with Jetpack, and one of the things I wanted to do was have the Jetpack Sharing buttons appear in a location other than the very end of the content. Normally they are applied as a filter on the_content, so they just appear right at the end. I wanted to relocate them into a different location, and it turns out that’s really easy to do with the power of jQuery.
jQuery( document ).ready( function( $ ) { // Relocate Jetpack sharing buttons down into the comments form jQuery( '#sharing' ).html( jQuery( '.sharedaddy' ).detach() ); } );
The #sharing
selector is just the DOM location where I want to move the buttons to, and the .sharedaddy
one is the container that Jetpack places its buttons in normally. We just detach it from the normal position and then dump it into the new location exactly as it was.
Select2 2.0
Beautiful replacement for simple SELECT box. Supports searching, remote datasets etc.
Stratus
Awesome in-page audio player, powered by jQuery.
jqtouch-ical
iCal, rebuilt for the iPhone using jQTouch
Uniform
“Sexy forms with jQuery”
phpquery
“phpQuery is a server-side, chainable, CSS3 selector driven Document Object Model (DOM) API based on jQuery JavaScript Library.”
jQTouch
“A jQuery plugin for mobile web development on the iPhone, iPod Touch, and other forward-thinking devices.”
Gluecon
Conference exploring all the technologies relating to cloud-based computing, mash-ups etc. Looks at distributed APIs and data-sources and how to mash them all together.
jQuery TOOLS
Awesome collection of well-made plugins for jQuery to handle lots of common UI tasks.