JSFiddle - React, Tailwind, and code Playground
HTML
<div id="content"></div>
<p>The textarea does not have a placeholder value until focus is gained (Firefox)</p>
JavaScript
$(function(){
var textArea = $('<textarea placeholder="placeholder here"></textarea>').clone();
$('#content').append(textArea);
});