JSFiddle - React, Tailwind, and code Playground

by ryanjbonnell

HTML

<p id="foo" name="bar">Hello, world!</p>

JavaScript

$(function() {
    var name = $('#foo').attr('name');

    alert(name);
    console.log(name);
});