Hi,
I'm trying to cause a draggable to perform 2 actions, but the revert:true is not working. Can anyone tell me how to get it to revert, as well as animate? The animate works fine!
Here's my code:
<script>
$( "#appointment_info" ).draggable({
revert: true,
drag: function() {
$( "#appointment_info" ).animate({width: "80px", height: "20px"}, 600, 'easeOutBounce');
}
});
</script>
Thanks all!
WoolyG