I have a div I’m using to show the user a status. Its width is relative to the percentage (0-100). Upon click of a button, I’d like to animate the width (in pixels) of that div. Any input on the best way to go about this? I’m already using jQuery, I assume it will use that to animate? (My panel is initially hidden, hence the .live function).
$('#slider50').live("click", function() {
// Animate here
});
As stated by PeeHaa you can use the .animate() jQuery function to expand you’re div’s width as shown in the example below:
http://jsfiddle.net/DKjKP/1/