JSFiddle - React, Tailwind, and code Playground

by jasonmerino

HTML

<input type="text" value="" placeholder="" id="test" />

JavaScript

var inpt = document.getElementById('test');

if (typeof inpt.placeholder === 'undefined') {
    alert('no placeholder...');
}
    else {
    alert('PLACEHOLDER!');
}