I\'m trying to dynamically update the HTML5 placeholder attribute of a text field using jQuery.
placeholder
$(\"textarea\").attr(\"placeholder\", \"New plac
try this :
$('#inputTextID').attr("placeholder","placeholder text");