jQuery: Como habilitar `beforeSend` para` $ .ajax ({dataType: 'jsonp' ... `? Existe alguma solução?

jQuery: Como habilitarbeforeSend para$.ajax({dataType:'jsonp'...? Existe alguma solução?http://jsfiddle.net/laukstein/2wcpU/

<div id="content"></div>
<script>
$.ajax({
    type:"GET",
    url:'http://lab.laukstein.com/ajax-seo/.json',
    dataType:'jsonp',
    async:false,
    beforeSend:function(data){ // Are not working with dataType:'jsonp'
      $('#content').html('Loading...');
    },
    success:function(data){
        $('#content').html(data.content);
    }
});
</script>

questionAnswers(3)

yourAnswerToTheQuestion