vote up 0 vote down star

Hello,

I need a little help here if possible, because I can,t find the source attr of an image with the selector

I have already used $(this).children('someclass')just before and the one I am trying to locate is in the same tablecell next too the other div

So, it makes no sense to me

$(".reg_info_body").hide();
$(".reg_info").toggle(function(){
    $(this).children(".reg_info_body").slideDown(100);

    var $bb = $(this).parent().next(".img_uitklapbaar").attr("src");
    alert("source img: " + $bb); // for testing


    }, function(){
    	$(this).children(".reg_info_body").slideUp(300);
    }
);




//HTML part

<tr class="reg_rij">
          <td width="20%"><div class="reg_form_label">Voornaam:</div></td>
          <td width="12%" class="reg_info" > <input type="text" class="reg_invoer" name="voornaam" 
          size="20" maxlength="20" value="<?php if (isset($trimmed['voornaam'])) echo $trimmed['voornaam']; ?>" /></td>
          <td width="4%" class="reg_info">?*</td>
          <td width="64%" class="reg_info"><div class="reg_info_body"><h4>? -: Voornaam [verplicht]</h4><p>
          Vul hier uw voornaam in</p></div>
            <div align="right"><img  class="img_uitklapbaar" src="../images/expand_icon.gif" width="16" height="16" /></div></td>
        </tr>

thanks, Richard

flag
1  
Is that HTML exactly what you have? if so, there is a typo before the src attribute... the (") doesn't belong there. – scunliffe May 12 at 17:21
oops... I mean there is a space needed between the " and src – scunliffe May 12 at 17:21
@scunliffe: you can delete your comment and post it again, instead of writing a new one to correct the first one ;) – Seb May 12 at 17:25
maybe, the typo is the solution. I will try to find it with the children selector then – Richard May 12 at 17:30
var $bb = $(this).children(".img_uitklapbaar").attr("src"); gives an undefined error – Richard May 12 at 17:33
show 1 more comment

2 Answers

vote up 0 vote down

maybe, I have too change it a little bit, but it is not completely accurate

var $bb = $(this).parent().find(".img_uitklapbaar").attr("src");

I will keep with my previous finding for the moment see example

link|flag
vote up 0 vote down

You can also check out the siblings method. Might work for you as well.

link|flag
I think,I try'd everything now, possibly not in the right way That's why I got into trouble, but at least I found it using one method. So, it's good for now, thanks – Richard May 13 at 23:33

Your Answer

Get an OpenID
or

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