Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have many image elements and want to get a specific image's source where the alternative text is "example".

I tried this:

var src = $('.conversation_img').attr('src');

but I can't get the one I need with that.

How do I select a specific image element based on its alternative text?

share|improve this question
Any error message you received.? – Chandresh May 15 '12 at 10:33
no im getting first element i dont know element position i only know alt text – Acid May 15 '12 at 10:34
1  
Working here man demo :) - jsfiddle.net/yL5cf/1 – Tats_innit May 15 '12 at 10:34

3 Answers

up vote 9 down vote accepted

To select and element where you know only the attribute value you can use the below jQuery script

var src = $('.conversation_img[alt="example"]').attr('src');

Please refer the jQuery Documentation for attribute equals selectors

Please also refer to the example in Demo

Following is the code incase you are not able to access the demo..

HTML

<div>
    <img alt="example" src="\images\show.jpg" />
    <img  alt="exampleAll" src="\images\showAll.jpg" />  

</div>

SCRIPT JQUERY

var src = $('img[alt="example"]').attr('src');
alert("source of image with alternate text = example - " + src);


var srcAll = $('img[alt="exampleAll"]').attr('src');
alert("source of image with alternate text = exampleAll - " + srcAll );

Output will be

Two Alert messages each having values

  1. source of image with alternate text = example - \images\show.jpg
  2. source of image with alternate text = exampleAll - \images\showAll.jpg
share|improve this answer
it should be this bro: var src = $('img.conversation_img[alt="example"]').attr('src'); because single quotes within single quotes will not work, cheerios! – Tats_innit May 15 '12 at 10:37
you're not escaping example and there for an error will occur – w0rldart May 15 '12 at 10:37
it is changed my friend give atleast a second to edit the answer... – Murtaza May 15 '12 at 10:38
var src = $('img.conversation_img[alt="example"]').attr('src');

If you have multiple matching elements only the src of the first one will be returned.

share|improve this answer
Only seconds difference :( – Murtaza May 15 '12 at 10:36
thank you........ – Acid May 15 '12 at 10:38
$('img.conversation_img[alt="example"]')
    .each(function(){
         alert($(this).attr('src'))
    });

This will display src attributes of all images of class 'conversation_img' with alt='example'

share|improve this answer

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.