diff options
Diffstat (limited to 'files/pt-br/web')
-rw-r--r-- | files/pt-br/web/html/element/input/checkbox/index.html | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/files/pt-br/web/html/element/input/checkbox/index.html b/files/pt-br/web/html/element/input/checkbox/index.html index 155d8301b2..d2e7ed1f71 100644 --- a/files/pt-br/web/html/element/input/checkbox/index.html +++ b/files/pt-br/web/html/element/input/checkbox/index.html @@ -46,7 +46,7 @@ translation_of: Web/HTML/Element/input/checkbox <pre class="brush: html"><form> <div> - <input type = "checkbox" id = "subscribeNews" nome = "subscribe" value = "<code>newsletter</code>"> + <input type = "checkbox" id = "subscribeNews" name = "subscribe" value = "<code>newsletter</code>"> <label for = "subscribeNews"> Subscreva a newsletter? </ label> </ div> <div> @@ -77,11 +77,11 @@ translation_of: Web/HTML/Element/input/checkbox <pre class="brush: html"><fieldset> <legend> Escolha seus interesses </ legend> <div> - <input type = "checkbox" id = "codificação" name = "interesse" valor = "codificação"> + <input type = "checkbox" id = "codificação" name = "interesse" value = "codificação"> <label for = "coding"> Codificação </ label> </ div> <div> - <input type = "checkbox" id = "música" name = "interesse" valor = "música"> + <input type = "checkbox" id = "música" name = "interesse" value = "música"> <label for = "music"> Música </ label> </ div> </ fieldset></pre> @@ -97,11 +97,11 @@ translation_of: Web/HTML/Element/input/checkbox <pre class="brush: html"><fieldset> <legend> Escolha seus interesses </ legend> <div> - <input type = "checkbox" id = "codificação" nome = "interesse" valor = "codificação" checked> + <input type = "checkbox" id = "codificação" name = "interesse" value = "codificação" checked> <label for = "coding"> Codificação </ label> </ div> <div> - <input type = "checkbox" id = "música" name = "interesse" valor = "música"> + <input type = "checkbox" id = "música" name = "interesse" value = "música"> <label for = "music"> Música </ label> </ div> </ fieldset></pre> @@ -142,7 +142,7 @@ translation_of: Web/HTML/Element/input/checkbox }); for(var i = 0; i <ingredientes.length; i ++) { - ingredientes [i] .addEventListener ('clique', updateDisplay); + ingredientes [i] .addEventListener ('click', updateDisplay); } função updateDisplay () { @@ -185,29 +185,29 @@ translation_of: Web/HTML/Element/input/checkbox <fieldset> <legend> Escolha seus interesses </ legend> <div> - <input type = "checkbox" id = "codificação" name = "interesse" valor = "codificação"> + <input type = "checkbox" id = "codificação" name = "interesse" value = "codificação"> <label for = "coding"> Codificação </ label> </ div> <div> - <input type = "checkbox" id = "música" name = "interesse" valor = "música"> + <input type = "checkbox" id = "música" name = "interesse" value = "música"> <label for = "music"> Música </ label> </ div> <div> - <input type = "checkbox" id = "arte" name = "interesse" valor = "arte"> + <input type = "checkbox" id = "arte" name = "interesse" value = "arte"> <label for = "art"> Art </ label> </ div> <div> - <input type = "checkbox" id = "sports" nome = "interesse" valor = "esportes"> + <input type = "checkbox" id = "sports" name = "interesse" value = "esportes"> <label for = "sports"> Esportes </ label> </ div> <div> - <input type = "checkbox" id = "cozinhar" nome = "interesse" valor = "cozinhar"> + <input type = "checkbox" id = "cozinhar" name = "interesse" value = "cozinhar"> <label for = "cooking"> Cozinhando </ label> </ div> <div> - <input type = "checkbox" id = "outro" nome = "interesse" valor = "outro"> + <input type = "checkbox" id = "outro" name = "interesse" value = "outro"> <label for = "other"> Outro </ label> - <input type = "text" id = "otherValue" nome = "outro"> + <input type = "text" id = "otherValue" name = "outro"> </ div> <div> <button type = "submit"> Enviar formulário </ button> @@ -252,10 +252,10 @@ otherText.style.visibility = 'oculto'; otherCheckbox.onchange = function () { if (otherCheckbox.checked) { - otherText.style.visibility = 'visível'; + otherText.style.visibility = 'visible'; otherText.value = ''; } outro { - otherText.style.visibility = 'oculto'; + otherText.style.visibility = 'hidden'; } };</pre> |