Preguntas etiquetadas con toggle

191
Alternar el atributo de entrada deshabilitado con jQuery

Aquí está mi código: $("#product1 :checkbox").click(function(){ $(this) .closest('tr') // Find the parent row. .find(":input[type='text']") // Find text elements in that row. .attr('disabled',false).toggleClass('disabled') // Enable them. .end() // Go back to the row. .siblings() // Get its...

79
jQuery Alternar texto?

¿Cómo alternar el texto HTML de una etiqueta de anclaje usando jQuery? Quiero un ancla que cuando se hace clic en el texto se alterna entre Show Backgroundy Show Text, así como también se desvanece dentro y fuera de otro div. Esta fue mi mejor suposición: $(function() {