I'm trying to update placeholder text from within an AJAX function where I'm getting a hex value for the font color of my new div. However changing placeholder text with the pseudo elements
$(".dynamicColor textarea::-webkit-input-placeholder").css('color', data.FontColor);
does not work.
Here's my HTML and a Fiddle :
<div class="dynamicColor">
<textarea name="text" placeholder="scientifik"></textarea>
</div>
I've already commented on this SO question. That question is in regards to basic placeholder pseudo manipulation.