JSFiddle - React, Tailwind, and code Playground

by chovy

HTML

<ul>
    <li><a href="news">Load more news</a></li>
    <li><a href="images">Load more images</a></li>
    <li><a href="videos">Load more videoes</a></li>
</ul>

JavaScript

$("a").click(function(e){
            e.preventDefault();
            $("ul").append("<li>"+this.href+"</li>");
/*
            $.getJSON(this.href, function(d){
                //do somethind with data
            });
*/
    });