Reading the Jquery documentation for the new UI effects I noticed that
there are two configurations:
effect and toggle/show/hide... this is kind of a bummer, because I
would like to toggle the scale effect. Is there any way to do this?
This does not seem to work:
$(document).ready(function(){
$(".clickme").click(function () {
$("div").toggle("scale", { percent: 0 }, 1000);
});
});
...