I saw that many blogs have this, and I remembered that my own blog also needs it, so I added one. The method is as follows:
First, check whether your blog has jQuery loaded. If not, please add code referencing this js in the header:
<script type=”text/javascript” src=”http://jqueryjs.googlecode.com/files/jquery-1.2.3.min.js”></script>
Then add the following code to the template file:
<script type="text/javascript">
$(document).ready(function() {
$(‘h2 a’).click(function(){
myloadoriginal = this.text;
$(this).text(‘Loading…’);
var myload = this;
setTimeout(function() { $(myload).text(myloadoriginal); }, 2011);
});
});
</script>
What you can DIY is, h2 a is the selection code, if your blog post title is not <h2>.