I'm currently working on a project where I have a div that displays the user's status, with its width being based on a percentage ranging from 0 to 100. I'd like to add an animation feature where, upon clicking a button, the div's width changes in pixels. Can anyone offer advice on the best approach for achieving this? I am using jQuery for other functionalities and assume it would be utilized for the animation as well. (The panel I mentioned is initially hidden, hence the use of the .live function).
$('#slider50').live("click", function() {
// Code for animation goes here
});