Código PHP:
   $("#nuevo a").toggle(function(){
        $("#formulario").show();
        $.ajax({
            type: "GET",
            url: 'nuevo.php',
            success: function(datos){
                $("#formulario").html(datos);
            }
        });
    }, function() {
      $("#formulario").hide();
}); 
    
 

