jQuery: Comment faire pour activer l'option " beforeSend` pour `$.ajax({type:'jsonp'...`? Est-il une solution?

jQuery: Comment faire pour activer beforeSend pour $.ajax({dataType:'jsonp'...? Est-il une solution?
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>

OriginalL'auteur Binyamin | 2011-01-11