“jQuery cambia de imagen src” Código de respuesta

jQuery Change Image Src

//change image src with jquery
$("#myImageID").attr("src","images/my_other_image.png");

//change image src plain javascript
document.getElementById('myImageID').src="images/my_other_image.png";
Grepper

Cambiar imagen src jQuery

$(document).ready(function () {
    $('img').click(function(){
        $(this).attr('src','images/download.jpeg')
      })
})
Distinct Dormouse

jQuery cambia de imagen src

<img id="my_image" src="first.jpg"/>
<script>
//Then you can change the src of your image with jQuery like this:
$("#my_image").attr("src","second.jpg");
</script>
Ivan The Terrible

Cambiar fuente de imagen jQuery

$("#my_image").attr("src","second.jpg");
AbubakarShf

Respuestas similares a “jQuery cambia de imagen src”

Preguntas similares a “jQuery cambia de imagen src”

Más respuestas relacionadas con “jQuery cambia de imagen src” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código