Posts by Fabio Assuncao • 201 points
7 posts
-
0
votes2
answers59
viewsA: Visually cluttered list (UL) in vertical list
I think I understand your question there maybe in case you change this part here .ul_categ> li { float: none; padding: 20px; background: red; } You change the padding to padding: 20px 0;…
htmlanswered Fabio Assuncao 201 -
1
votes3
answers986
viewsA: How to make the label work with a link inside?
I also think this will only be possible with javascript so I changed the html a little and made a script. function showFrame() { const frame = document.getElementsByName("conteudo")[0]; const…
-
3
votes1
answer63
viewsA: Why can’t I save several . value in the array?
If you want to save all the names in your Names array instead of: Nomes.push = d.getElementsByName('Nome')[0].value; You should trade for this: Nomes.push(d.getElementsByName('Nome')[0].value);…
-
1
votes1
answer51
viewsA: How to modify the values of a table td if it has a specific character?
What you can do is something like this. It is to work in this case too(semdomain@config...)? In this case this code only takes the validated emails. $(function(){ $("td a").each(function(){ var re =…
-
1
votes3
answers95
viewsA: I can’t use javascript in my html
You are having that error because Function is within a variable. Instead of calling the function in html by onclick you can try calling it after the variable with this.…
-
0
votes2
answers164
viewsA: How to get the form data without using Submit?
If it’s just to fix your error at the end of your console.log you have one : instead of ; To send the data on you can try as Walter said up there.
-
1
votes1
answer70
viewsA: change color of page components
I think you can do something like this Adding color input and javascript. I only made it for H1 but then you can go adapting to the other elements.…