According to the documentation this should work:
$('#content').on( 'load', function(event){
alert('ready')
})
But it doesn't. http://jsfiddle.net/SJKqt/
This does work:
$('#content').on( 'load', alert('ready') )
But I can't get anonymous functions to run at all.