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);
});
by ryanjbonnell
<p id="foo" name="bar">Hello, world!</p>
$(function() {
var name = $('#foo').attr('name');
alert(name);
console.log(name);
});