I am using jsf 2.2 in javaee project, i want to use a placeholder for my input text so that's what i used.
<h:inputText id="nom" value="#{InscriptionBean.nom}" placeholder="test">
</h:inputText>
but that's not working i also tried
<h:inputText id="nom" value="#{InscriptionBean.nom}" h:placeholder="test">
</h:inputText>
Hope you can help me.