diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-07-27 11:33:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 11:33:49 -0400 |
commit | 4c9408f79ed6ccf2b81c4cfaf73cb34cf4d25eb4 (patch) | |
tree | 0450d8e183c235b7ce07e9c34be2220e6ae1eab2 /files/es/web/api/globaleventhandlers | |
parent | a0187295debbfe75d4409f360ba7e0ff765ca2f3 (diff) | |
download | translated-content-4c9408f79ed6ccf2b81c4cfaf73cb34cf4d25eb4.tar.gz translated-content-4c9408f79ed6ccf2b81c4cfaf73cb34cf4d25eb4.tar.bz2 translated-content-4c9408f79ed6ccf2b81c4cfaf73cb34cf4d25eb4.zip |
Remove link title attributes thats just the href es (#1737)
* remove link 'title' attributes that's just the 'href' (es)
* a couple more
Diffstat (limited to 'files/es/web/api/globaleventhandlers')
4 files changed, 6 insertions, 6 deletions
diff --git a/files/es/web/api/globaleventhandlers/onerror/index.html b/files/es/web/api/globaleventhandlers/onerror/index.html index 44c921b4ad..b19a1ee1bf 100644 --- a/files/es/web/api/globaleventhandlers/onerror/index.html +++ b/files/es/web/api/globaleventhandlers/onerror/index.html @@ -62,4 +62,4 @@ window.onerror = function myErrorHandler(errorMsg, url, lineNumber) { <h2 id="Specification" name="Specification">Especificación</h2> -<p><a class="external" href="http://devedge-temp.mozilla.org/library/manuals/2000/javascript/1.3/reference/handlers.html#1120097" title="http://devedge-temp.mozilla.org/library/manuals/2000/javascript/1.3/reference/handlers.html#1120097">JavaScript 1.1</a></p> +<p><a class="external" href="http://devedge-temp.mozilla.org/library/manuals/2000/javascript/1.3/reference/handlers.html#1120097">JavaScript 1.1</a></p> diff --git a/files/es/web/api/globaleventhandlers/oninput/index.html b/files/es/web/api/globaleventhandlers/oninput/index.html index 18785b9fe3..add6d41f5d 100644 --- a/files/es/web/api/globaleventhandlers/oninput/index.html +++ b/files/es/web/api/globaleventhandlers/oninput/index.html @@ -24,7 +24,7 @@ window.addEventListener('input', function (e) { <h2 id="Specification" name="Specification">Especificaciones</h2> -<p><a class="external" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/common-input-element-attributes.html#event-input-input" title="http://www.whatwg.org/specs/web-apps/current-work/multipage/common-input-element-attributes.html#event-input-input">HTML - APIs de elementos de entrada comunes (<code>input</code>)</a></p> +<p><a class="external" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/common-input-element-attributes.html#event-input-input">HTML - APIs de elementos de entrada comunes (<code>input</code>)</a></p> <h2 id="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2> @@ -81,6 +81,6 @@ window.addEventListener('input', function (e) { <ul> <li><a class="external" href="http://blog.danielfriesen.name/2010/02/16/html5-browser-maze-oninput-support/">Un laberinto de navegadores HTML5, soporte para oninput</a></li> <li><a class="external" href="http://www.useragentman.com/blog/2011/05/12/fixing-oninput-in-ie9-using-html5widgets/">Corrigiendo oninput en IE con html5Widgets</a> incluye cobertura para IE6-8</li> - <li>Mathias Bynens sugiere <a class="external" href="http://mathiasbynens.be/notes/oninput" title="http://mathiasbynens.be/notes/oninput">enlazando a input y keydown</a></li> - <li><a class="external" href="http://help.dottoro.com/ljhxklln.php" title="http://help.dottoro.com/ljhxklln.php">evento oninput | dottoro</a> posee notas acerca de bugs en IE9</li> + <li>Mathias Bynens sugiere <a class="external" href="http://mathiasbynens.be/notes/oninput">enlazando a input y keydown</a></li> + <li><a class="external" href="http://help.dottoro.com/ljhxklln.php">evento oninput | dottoro</a> posee notas acerca de bugs en IE9</li> </ul> diff --git a/files/es/web/api/globaleventhandlers/onload/index.html b/files/es/web/api/globaleventhandlers/onload/index.html index b97cf40b4f..2ffacf366c 100644 --- a/files/es/web/api/globaleventhandlers/onload/index.html +++ b/files/es/web/api/globaleventhandlers/onload/index.html @@ -40,7 +40,7 @@ translation_of: Web/API/GlobalEventHandlers/onload <p>El evento <code>load</code> dispara el evento al final del proceso de carga del documento. En este punto, todos los objetos del documento son DOM, y todas las imágenes y sub-frames han terminado de cargarse.</p> <p>Existen también los <a href="/en/Gecko-Specific_DOM_Events" title="en/Gecko-Specific_DOM_Events">Eventos DOM Específicos</a> como <code>DOMContentLoaded</code> y <code>DOMFrameContentLoaded</code> (los cuales pueden ser manejados usando {{ domxref("element.addEventListener()") }}) y son ejecutados despues de que el DOM de la página ha sido construido, pero no esperear a que otros recursos terminen de cargar.</p> <h3 id="Specification" name="Specification">Especificación</h3> -<p>Este evento tipo handler se encuentra especificado en <a class="external" href="http://www.whatwg.org/html/#handler-window-onload" title="http://www.whatwg.org/html/#handler-window-onload">HTML</a>.</p> +<p>Este evento tipo handler se encuentra especificado en <a class="external" href="http://www.whatwg.org/html/#handler-window-onload">HTML</a>.</p> <h3 id="Ver_También">Ver También</h3> <ul> <li> diff --git a/files/es/web/api/globaleventhandlers/onwheel/index.html b/files/es/web/api/globaleventhandlers/onwheel/index.html index e2a59493ba..bf063dfb86 100644 --- a/files/es/web/api/globaleventhandlers/onwheel/index.html +++ b/files/es/web/api/globaleventhandlers/onwheel/index.html @@ -29,4 +29,4 @@ original_slug: Web/API/Element/onwheel <h3 id="Ver_también">Ver también</h3> -<p><a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=18542" title="https://www.w3.org/Bugs/Public/show_bug.cgi?id=18542">Bug 18542 – el atributo onmousewheel debe ser reemplazado con onwheel</a></p> +<p><a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id=18542">Bug 18542 – el atributo onmousewheel debe ser reemplazado con onwheel</a></p> |