summaryrefslogtreecommitdiffhomepage
path: root/es-es
diff options
context:
space:
mode:
authorGnomino <Gnomino@users.noreply.github.com>2016-10-27 13:36:08 +0200
committerven <vendethiel@hotmail.fr>2016-10-27 13:36:08 +0200
commit78a4ae7da90139fecb2add55722ae7a54f43c593 (patch)
treeef4c9a351c1a550de2c8609d2b2aabb062314e1a /es-es
parentdf52fda2e867c0e7ef31148ea498eaf3023df30b (diff)
[jQuery/en] [jQuery/es] Fixes syntax errors (#2525)
* Fixed syntax errors * Fixes syntax errors
Diffstat (limited to 'es-es')
-rw-r--r--es-es/jquery-es.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/es-es/jquery-es.html.markdown b/es-es/jquery-es.html.markdown
index d35e6f17..27ad48bb 100644
--- a/es-es/jquery-es.html.markdown
+++ b/es-es/jquery-es.html.markdown
@@ -79,7 +79,7 @@ $('#btn').on(
);
// Puede mover y ocultar elementos con algunos métodos de efecto
-$('.table').hide(); # Oculta el(los) elemento(s)
+$('.table').hide(); // Oculta el(los) elemento(s)
// Nota: llamar a una función en estos métodos aún oculta el elemento
$('.table').hide(function(){
@@ -134,7 +134,7 @@ $('p').height(); // Obtiene sólo la altura de la primera etiqueta 'p'
// Puedes utilizar 'each' para recorrer todos los elementos
var heights = [];
$('p').each(function() {
- heights.push($(this.height)); // Añade todas las alturas "p" de la etiqueta a la matriz
+ heights.push($(this).height()); // Añade todas las alturas "p" de la etiqueta a la matriz
});