Hey guys I'm trying to add the string 'url(" ") ' around my a href 'rel' attribute after calling it through jQuery. I just don't know the right syntax. Here is what I have. I tried to put the url("") inside the rel tag, and that didn't work.
Any help would be greatly appreciated thanks.
$(function() {
$('#list li a').hover( function(){
$("#meow").css( "background", $(this).attr('rel') );
});
});