La documentación en el sitio de jQuery es bastante completa. Acá tenés un resumen de selectores:
http://api.jquery.com/category/selectors/
En jQuery podés seleccionar de acuerdo al valor de un atributo sin problemas. En este caso te interesa el atributo "src". Mirá este ejemplo:
Código Javascript
:
Ver original<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
$(window).load(function(){
$('img[src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif"]').animate({
margin:20,
width:500
});
});
</script>
</head>
<body>
<p> <img src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif" /></p>
<p> <img src=" http://upload.wikimedia.org/wikipedia/commons/thumb/b/b3/Homer_Simpson_in_Cerne_Abbans.JPG/220px-Homer_Simpson_in_Cerne_Abbans.JPG" /></p>
</body>
</html>
Como verás sólo se selecciona la imagen con el atributo src especificado.