Can you please give me a hint on how do I get the value of a specific image by a custom attribute . For example, I have :
<img class="image"
identif="<?php echo $j; ?>"
id="<?php echo $id; ?>"
src="../<?php echo $sqlg[$pic] ?>"
h="<?php echo $heightl; ?>"
w="<?php echo $widthl ?>"
height="<?php echo $height; ?>px"
width="<?php echo $width; ?>px"
title="Double-click to enlarge image" />
I want in jquery to get the "src" of the image by the "identif" attribute, thank you :)