Hello
assume that I have this list:
<ul id="carousel">
<li><a title="hey"><img src="image.png"/></a></li>
</div>
And now my jQuery script:
$(function() {
$("#carousel a").click(function(){
var url = $(this).attr('title');
alert(url);
});
});
This doesn't work, it works for other attributes such as "alt", "rel" etc. I will be greatful for any assistance.