summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--es-es/jquery-es.html.markdown4
-rw-r--r--jquery.html.markdown4
2 files changed, 4 insertions, 4 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
});
diff --git a/jquery.html.markdown b/jquery.html.markdown
index 5ac730f5..d498733d 100644
--- a/jquery.html.markdown
+++ b/jquery.html.markdown
@@ -66,7 +66,7 @@ $('#btn').on(
);
// You can move and hide elements with some effect methods
-$('.table').hide(); # Hides the element(s)
+$('.table').hide(); // Hides the element(s)
// Note: calling a function in these methods will still hide the element
$('.table').hide(function(){
@@ -121,7 +121,7 @@ $('p').height(); // Gets only the first 'p' tag's height
// You can use each to loop through all the elements
var heights = [];
$('p').each(function() {
- heights.push($(this.height)); // Adds all 'p' tag heights to array
+ heights.push($(this).height()); // Adds all 'p' tag heights to array
});