-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tooltip don't respect dynamically changed title attribute #14769
Comments
|
So why not just update the |
@hnrch02 If some other third party plugin is updating |
I see. I'll leave this for @fat to decide. |
One could just use dynamic title option already available in such scenarios I think: $btn.tooltip({
title: function(){
return $(this).attr('title');
}
}); |
Similar issue here. The dynamic title option doesn't update the tooltip content either. |
I believe the dynamic title option is not working due to this issue: #15359; the value of the |
Closing as a dupe bug report of #15359. |
try this |
need to set `title` and `data-original-title` due to bug in bootstrap's tooltip. @see twbs/bootstrap#14769
need to set `title` and `data-original-title` due to bug in bootstrap's tooltip. @see twbs/bootstrap#14769
Tooltip don't respect dynamically changed title attribute.
The text was updated successfully, but these errors were encountered: