Ir a la navegación
Ir a la búsqueda
Busca en cnbGuatemala con Google
85 bytes eliminados
, hace 7 años
Línea 1: |
Línea 1: |
| <div id="resultado"> </div> | | <div id="resultado"> </div> |
| | | |
− | <button form="legibilidad" type="submit" id="calcular">Analizar</button> | + | <button type="submit" id="calcular">Analizar</button> |
| | | |
| <script> | | <script> |
− | function ocul() {
| |
− | }
| |
| function ObtenerTexto() { | | function ObtenerTexto() { |
| if (0 < document.forms.legibilidad.escrito.value.length) { | | if (0 < document.forms.legibilidad.escrito.value.length) { |
Línea 12: |
Línea 10: |
| a.onreadystatechange = function() { | | a.onreadystatechange = function() { |
| 4 == a.readyState && 200 == a.status && (document.getElementById("resultado").outerHTML = a.responseText) | | 4 == a.readyState && 200 == a.status && (document.getElementById("resultado").outerHTML = a.responseText) |
− | } | + | }; |
− | ;
| |
| var b = new FormData; | | var b = new FormData; |
| b.append("textParameter", document.forms.sfForm.input_6.value); | | b.append("textParameter", document.forms.sfForm.input_6.value); |
Línea 21: |
Línea 18: |
| } | | } |
| | | |
− | document.getElementById("sfForm").addEventListener("submit", function(a) {
| + | $( "#calcular" ).click(function() { |
− | ObtenerTexto();
| + | ObtenerTexto(); |
− | a.preventDefault()
| + | a.preventDefault() |
| }); | | }); |
| | | |