Posts by pedrozath • 171 points
3 posts
-
1
votes1
answer35
viewsA: Click and change text inside the element
The ways I can think of are as follows:: contenteditable=true When clicking, convert to a inputor textarea (Linkedin does so) Make a Javascript schema where it puts an element on top, hide the…
-
1
votes1
answer71
viewsA: Is there any way to work with data groups in html form?
The solution that I see most clear for you would be to create custom elements with Javascript. As for the question of translating this into data, I did the script below, which translates the HTML…
-
2
votes1
answer196
viewsA: Use of the ID attribute in <link> tags
Is it appropriate to use the ID attribute in tags ? In which cases could I use it? Yes it is appropriate as long as there is only one element with the ID. Therefore, care should be taken in its use.…