Set Elements to Equal Heights with jQuery

Sunday, September 11th, 2011 | jQuery | 0 comments

Here’s a quick jQuery plugin I put together for equalizing the heights of multiple elements. You give the plugin a list of elements, jQuery then loops through the specified elements, finds the tallest, and sets the height of each element to the tallest one.

Read More →

Making AJAX Requests with jQuery

Thursday, August 25th, 2011 | AJAX, jQuery | 0 comments

Making an XMLHttpRequest (AJAX request) enables JavaScript code to make asynchronous HTTP requests to the server. Creating the XMLHttpRequest object via standard JavaScript quickly turns into a lengthy bit of code. This is where JavaScript’s beautiful cousin steps in: jQuery.

Read More →