I\'m trying to dynamically update the HTML5 placeholder attribute of a text field using jQuery.
placeholder
$(\"textarea\").attr(\"placeholder\", \"New plac
I think you have to do that :
$("textarea").val(''); $("textarea").attr("placeholder", "New placeholder text");