[jQuery/en] [jQuery/es] Fixes syntax errors (#2525)

* Fixed syntax errors

* Fixes syntax errors
This commit is contained in:
Gnomino 2016-10-27 13:36:08 +02:00 committed by ven
parent df52fda2e8
commit 78a4ae7da9
2 changed files with 4 additions and 4 deletions

View File

@ -79,7 +79,7 @@ $('#btn').on(
); );
// Puede mover y ocultar elementos con algunos métodos de efecto // 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 // Nota: llamar a una función en estos métodos aún oculta el elemento
$('.table').hide(function(){ $('.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 // Puedes utilizar 'each' para recorrer todos los elementos
var heights = []; var heights = [];
$('p').each(function() { $('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
}); });

View File

@ -66,7 +66,7 @@ $('#btn').on(
); );
// You can move and hide elements with some effect methods // 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 // Note: calling a function in these methods will still hide the element
$('.table').hide(function(){ $('.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 // You can use each to loop through all the elements
var heights = []; var heights = [];
$('p').each(function() { $('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
}); });