3
I make a request ajax to search in the bank to bring the language configuration, type, EN, PT, and so on...
I want placeholders to be changed according to the chosen language. For example, instead of staying placeholder='Digite seu usuario'
, I’d like you to stay placeholder='Enter your username'
and so it goes...
For block tags (type p, div etc.) I handle so $("#memberArea").html(data.pt.member_area);
, and there works perfectly, however, for placeholder I do not know...
Is there any way to manipulate this via jQuery?