Hello I need this JQuery to run for the image bellow it. But here's the trick I need to select the image by it's alt, I can't seem to get the JQuery to select it
<script>
$('img[alt="800px-Red_Bull"]').onload = function() {
Pixastic.process(img, "desaturate", {average : false});
</script>
<img width="800" height="387" src=".../01/800px-Red_Bull.png" alt="800px-Red_Bull" title="800px-Red_Bull">
load
and notonload
. The selector code looks good. – Stickseed.../
is not a valid path../
is the current directory,../
is the parent directory..../
does not exist. – Broida