JSFiddle - React, Tailwind, and code Playground

by nucklear

HTML

<ul class="nav-desplegable">
    <li><a href="http://google.com">Page 1</a></li>
    <li><a href="http://bing.com">Page 2</a></li>
</ul>
<div id="container"></div>

CSS

#container{
    width: 100%;
    height: 100%;
    overflow: auto;
}

JavaScript

$('.nav-desplegable li a').click(function(e) {
        e.preventDefault();
        var href = $(this).attr('href');
        var nodo = $(this).attr('name');
        
    $('#container').html()
    
        $(window).load(href, function() {
            alert('DESPUES!'); // aqui vendria cargar el contenido del div                                          
    
$()

        });