Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code:

JQuery

$("document").ready(function(){
    var imglink;
    imglink = 'url("http://poweruser.aeiou.pt/wp-content/uploads/2012/12/google.jpg")';
    $('#trick_img').css('content',imglink);

    $(document).on("click","change",function(){
        imglink = 'url("http://poweruser.aeiou.pt/wp-content/uploads/2012/12/Google-Gmail.jpg")';
        $('#trick_img').css('content',imglink);
    });

});​

HTML

<image id="trick_img" draggable="false"/><br/>
<button id="change">Change image</button>​

Css

img#trick_img { margin:10px; }

Test Link http://jsfiddle.net/Y5jA9/

My question is: How would I do to get the image on the screen changed?

share|improve this question
What is your question? – undefined Jan 2 at 2:41
I want the image to be changed on the screen! – Th3B0Y Jan 2 at 2:42

3 Answers

up vote 3 down vote accepted

This line:

$(document).on("click","change",function(){

Should be changed to:

$(document).on("click","#change",function(){

To reference the "Change image" button by id

share|improve this answer
Thank you! I was missing that detail haha. – Th3B0Y Jan 2 at 3:09
$(document).on("click","#change",function(){
        imglink = 'http://poweruser.aeiou.pt/wp-content/uploads/2012/12/Google-Gmail.jpg';
        $('#trick_img').attr('src',imglink);
    });
share|improve this answer
I liked attr function. i'm using it now! Thank you! – Th3B0Y Jan 2 at 3:10
 $(document).on("click","#change",function(){
        var imglink;
        imglink = 'http://poweruser.aeiou.pt/wp-content/uploads/2012/12/Google-Gmail.jpg';
        $('#trick_img').attr('src',imglink);
    });

try this

http://jsfiddle.net/Y5jA9/3/

share|improve this answer
I liked attr function. i'm using it now! Thank you! – Th3B0Y Jan 2 at 3:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.