jQuery: ¿Cómo habilitar `beforeSend` para` $ .ajax ({dataType: 'jsonp' ... `? ¿Hay alguna solución?

jQuery: cómo habilitarbeforeSend para$.ajax({dataType:'jsonp'...? ¿Hay alguna solución?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>

Respuestas a la pregunta(3)

Su respuesta a la pregunta