vote up 0 vote down star

I have the below code in a .ascx file as part of an asp.net project. How can I write the javascript to change the image source to a gif?

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Steps123.ascx.cs" Inherits="SwintonTaxiWeb.UserControls.Steps123" %>

<div id="slickShow">

    <div class="<%=stepOneDivClass %>">
            <asp:ImageButton runat="server" ID="GetQuote" 
                CssClass="imgBut swapImage {src: '/images/Quote-Oval-button-(roll-over).png'}"
                ImageUrl="/images/Quote-Oval-button.png" AlternateText="Get Quote" TabIndex="1" />
    </div>
    <div id="rollOver">
        <img src="/images/Roll-over-to-view-steps-two-and-three.png" alt="Roll over to view steps 2 and 3" />
    </div>
    <div id="slideContainer">
        <div class="step-two">
            <asp:ImageButton runat="server" ID="GetCallback" 
                CssClass="swapImage {src: '/images/Call-back-button-(roll-over).png'}" 
                ImageUrl="/images/Call-back-button.png" AlternateText="Get Callback" Width="69" 
                Height="44" TabIndex="2" />
        </div>
        <div class="step-three">
            <fieldset>
                <asp:TextBox CssClass="postcode" ID="postcode" runat="server" TabIndex="0" /><asp:ImageButton runat="server" 
                    ID="go" CssClass="go" ImageUrl="/images/Go-button.png" AlternateText="Go" onclick="Go_Click" TabIndex="1" />
            </fieldset>      
        </div>
    </div>
</div>

Thanks for your help Regards Judi

flag

71% accept rate
3  
I can't help but notice that your accept rate is at 10% maybe accept a answers for a few of your other questions? People are more likely to provide answers if they know there's a chance of getting somrep for it – Charlie boy Oct 12 at 14:16
Thanks Charlie Boy I'm new to stackoverflow so I'm still learning how it works :) – judi Oct 12 at 14:28

3 Answers

vote up 3 vote down check

Using just JavaScript you could do:

var image = document.getElementById('ctl00_MainContent_tester_GetQuote');
image.src = [path to gif];

You could also use jQuery to grab the element via class (or some other selector if you want):

var image = $('.[ClassOfImage]').attr('src', '[NewPathToGif]');

I love the jQuery.

link|flag
Thanks Josh, Is this correct nothing seems to happen when I put it in my header? <script type="text/javascript">//ie6 png fix var image = document.getElementById('GetQuote'); image.src = [/images/Quote-Oval-button-(roll-over).gif]; </script> – judi Oct 13 at 11:53
This is hard to read because it is not code formatted, but it looks like you need to replace the brackets in [/images/Quote-Oval-button-(roll-over).gif] with quotes "/images/Quote-Oval-button-(roll-over).gif" – JoshNaro Oct 13 at 13:56
[path to gif] is meant to represent an entire object, such as a string. – JoshNaro Oct 13 at 13:57
vote up 1 vote down

The simplest way is like this

 document.getElementById('ctl00_MainContent_tester_GetQuote').src = 'mygifsrc.gif';

But in this case that id is an ASP.Net generated id, and you might not be able to count on it not changing on you. My normal way to work around this is to find a container (like your div, but not part of the custom control) and call something like getElementsByTagName() from there to find the element you need. But as you didn't share your surrounding html I can't yet give you something I know will work.

link|flag
Thanks Joel, I'm a bit of a novice at javascript as I'm mainly a designer in photoshop. I've updated my script. Could you let me know where I should put this new code? Thanks very much – judi Oct 12 at 16:44
vote up 0 vote down

Something like...

document.getElementById("ctl00_MainContent_tester_GetQuote").src = "myImage.gif";

You can use myControl.ClientId in place of "ctl00_MainContent_tester_GetQuote" if you want to keep things dynamic.

link|flag

Your Answer

Get an OpenID
or

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