There is a jquery appear plugin that I believe does exactly what you are asking.
http://plugins.jquery.com/project/appear
$('#theTarget').appear(function() {
$(this).text('Hello world');
});
It also ties into resize, and initial window size ... etc, etc, etc.