function foo() {
$('#tabs a').bind('click', function() {
var link = $(this)
$.ajax({
type: 'GET',
url: "/activity/"+link.attr('class'),
success: function(data, textStatus) {
$("#content").html(data);
return true;
}
})
})
}
$(function() {
foo()
})
Pastie
