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.
Making AJAX Requests with jQuery
Thursday, April 8th, 2010 | AJAX, jQuery | 0 commentsMaking 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 →