I am updating the "title" attribute of a div dynamically in a javascript function. If I retrieve the new attribute, it's updated, but onscreen the old "title" still shows in the mouseover tooltip. Is this a bug? Is there a way around that?
// Toggle and slide LinkCards
if (toggle_class == 'ico_minim') {
$(toggle).removeClass('ico_minim');
$(toggle).addClass('ico_expand');
$('#'+card_id).attr('title','Expand');
alert(toggle_class+' '+$('#'+card_id).attr('title'));
$('#'+card_id).css('height', min_height);
slide_linkcards(card_id, height_adjust, toggle_class);
}
else {
$(toggle).removeClass('ico_expand');
$(toggle).addClass('ico_minim');
alert('minimize');
$('#'+card_id).attr('title','Minimize');
alert(toggle_class+' '+$('#'+card_id).attr('title'));
$('#'+card_id).css('height', exp_height);
slide_linkcards(card_id, height_adjust, toggle_class);
}
What can I change in the code to make the title show?
divs have atitleattribute. Try using the.data()method if you want to store data in objects. – Blender Nov 19 '11 at 0:41