Answers for "change the place holder in input"

CSS
2

change input placeholder text jquery

$("input[type=password]").attr("placeholder", "Type your answer here");
Posted by: Guest on June-05-2020
-1

change input placeholder text css

#text2::-webkit-input-placeholder::before {
    color:#666;
    content:"Line 1\A Line 2\A Line 3\A";
}
Posted by: Guest on January-19-2021

Code answers related to "change the place holder in input"

Browse Popular Code Answers by Language