Preguntas con la etiqueta [attr]
Lista
attr preguntas
Alternar atributo de entrada deshabilitado usando jQuery
6
respuestas
222
votos
215.9k
vistas
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
.prop() frente a .attr()
18
respuestas
2.5k
votos
725.8k
vistas
Entonces jQuery 1.6 tiene la nueva función prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) o en este caso hacen lo mismo? Y si tengo que