Hi there, I have just updated my sites to WP 3.2.1, I found several known issues:
– Quick Edit won’t work
– Insert Image does nothing
– etc
I have found the solution by adding this to my functions.php
if (!is_admin()) {
wp_enqueue_script('jqueryTools', 'https://cdn.jquerytools.org/1.2.5/full/jquery.tools.min.js');
}
It seems that jQuery Tools overrides some functions in WordPress and it breaks some features in the admin area.
Hope this fix helps somebody, it did for me.