I am not able to set the title property for span tag... I am using the following code
$('.className').find("span").attr("title",'Some_text');
Its not working...
Maybe the problem is that you are searching for a span element in a class, this will work for you.
$('span.className').attr('title','New Title');
Here you apply the title to all the span elements with that class.
Hope it helps you.
Fiddle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With