Their code is:
<script type="text/javascript">
$(document).ready(function(){
$(".bust").live('click', function() {
$(this).html('Loading...');
$.ajax({
type: "POST",
url: "../php/prison.php",
data: "bust=" + $(this).attr('id'),
success: function(response){
$('#content').html(response);
$('#refresh').load("prisonfeed.php");
}
});}); });
</script>
But I don't understand it. Sorry, im new to javascript