Salut,
onload et ready fonctionnent sur mon Firefox 17.0.1
<!DOCTYPE html>
<html lang="fr">
<head>
<!--<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title></title>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('img')
.ready(function(){ console.log('ready ok'); })
.load(function(){ console.log('load ok'); });
});
</script>
</head>
<body>
<img src="http://lastucealoreille.unblog.fr/files/2010/03/chameau.jpg">
</body>
</html>