How to hook into wordpress admin upload iframe?

When the thickbox gets closed it triggers ‘tb_unload’ (in earlier WordPress version it was just ‘unload’ (not sure though) )

So you can do something like:

 $(window).bind('tb_unload', function() {
    //do stuff
});