JSFiddle - React, Tailwind, and code Playground

by mar10jrose

HTML

<ul id="points_list"/>
<input type="submit" value="go" id="go" />

JavaScript

$("#go").click(function() {
    
    var points = [1, 2, 3, 4];
    
    $.each(points, function(index, value) {
        var elm = $('<a>' + 'Point:' + value + '</a>');
        elm.css('point');
        elm.attr('href', 'http://somelink');
        $('#points_list').append('<li>' + elm.html() + '</li>');
    });   
});