I've got a jQuery function that is going to replace each hyperlink with a jPlayer using that hyperlink as its source. The hyperlink looks like this in HTML:
<div>
<a href="demos/myfile.mp3" rel = 'jPlayer'>myfile</a>
</div>
So what I've got so far in my Javascript is this:
$(document).ready(function() {
$('a[rel="jPlayer"]').jPlayer("setMedia", { mp3: $(this).attr("href") });
});
The problem is I can't figure out the right selector to take the value of the existing hyperlink and use it for the mp3: source in the code. Maybe I'm not even using $this right, or maybe it's something completely different that I'm missing.
When I run the code as is, I get "a.attributes is null" in Firebug. Can anyone help fix this up?