So, I wrote a small bit of jquery to toggle a side-bar on my web app, and it works just fine in jQuery 1.8, but once I upgraded to 1.9, it broke. Here is the code:
$('a#sidebar-act').toggle(function() {
$('div#sidebar').animate({width:260}, 200);
}, function() {
$('div#sidebar').animate({width:64}, 200);
})
This functionality of the
togglemethod has been removed. You’ll have to track the toggle yourself: