website to change placeholder value in your type jquery code example
Example 1: get the placeholder value jquery
$(elementName).attr('placeholder');
Example 2: change placeholder text jquery
// Changes placeholder on password type input
$("input[type=password]").attr("placeholder", "Type your answer here");