JSFiddle - React, Tailwind, and code Playground

by rodrigonery

JavaScript

$(function () {  
    $('#menu a').on('click', function(e){  
        e.preventDefault();  
        var teste = $(this).attr('href');
        $.ajax({  
            url: teste,  
            success: function( response ){  
                $('#content').fadeOut('fast', function(){  
                    $('#content').html($( '<div>'+response+'</div>' )
					.find('#content').html() )
					.fadeIn('fast');  
                });
            } 
        }); 
	});
});