Una cosa que se suele hacer bastante en javascript es resetear un formulario, es decir, devolver el formulario a su valor inicial.
Con jquery esto es bastante fácil:
$(
Una cosa que se suele hacer bastante en javascript es resetear un formulario, es decir, devolver el formulario a su valor inicial.
Con jquery esto es bastante fácil:
$(
03/06/2009 at 1:02 pm Permalink
Great job! Your :reallyvisible selector should definitely be in the core!
05/08/2009 at 12:16 pm Permalink
Thanks very much. Help me a lot this evening.
21/08/2009 at 7:27 am Permalink
Awesome man… Very very helpful…
09/09/2009 at 1:01 am Permalink
Thanks for the article – well explained and eay to follow. However, the syntax for your extension to the jQuery selector engine does not work – try this instead:
jQuery.extend(jQuery.expr[«:»],{reallyvisible: function(a) { return (jQuery(a).is(‘:visible’) && jQuery(a).parents(‘:hidden’).length == 0) }});
10/11/2009 at 2:11 pm Permalink
if (!$(‘#DivBlock’).is (‘:hidden’)) alert («Not Hidden»);
not work with IE8.
30/04/2010 at 12:09 am Permalink
Pues a mi el is(:visible) si me esta funcionando como debería, (me devuelve false si algun padre esta oculto), que encima es el comportamiento que no quiero jaja, (aunque sea el esperable y razonable). Con Firefox 3.6.3 y jquery 1.3.2 (salió el 19 de Febrero de 2009, un mes después de este artículo así que quizás lo hayan solucionado).
Saludos!
21/10/2010 at 7:22 pm Permalink
Excelente amigo, me sacaste de un apuro.
09/12/2010 at 2:23 pm Permalink
Me sirvió un rato el dato pero, efectivamente, desde la versión 1.3.2 ya tienen ese cambio y lo tengo comprobado. Aquí está la info http://docs.jquery.com/Release:jQuery_1.3.2#:visible.2F:hidden_Overhauled
Saludos!
06/01/2011 at 3:18 pm Permalink
@Jose T. y @Abraham gracias por vuestro comentario
18/04/2012 at 8:57 pm Permalink
Excelente amigo! muchas gracias
29/06/2012 at 6:07 am Permalink
Gracias por la nota, me sirvió mucho.
14/03/2014 at 4:14 pm Permalink
Muchísimas Gracias!!