The best option to turn off tooltips based on device screen size is to add custom classes with the attribute data-bs-custom-class
:
<button data-bs-toggle="tooltip"
data-bs-title="Hide me on small screens"
data-bs-custom-class="d-none d-md-block">
Button text
</button>
To prevent Bootstrap tooltips on small devices, you can also use one of the following approaches:
You can hide tooltips using media queries:
@media (max-width: 768px) {
.tooltip {
display: none !important;
}
}
This will ensure that tooltips are not displayed on devices smaller than 768px (typical breakpoint for tablets and smartphones).
You can programmatically disable tooltips when the screen width is below a certain threshold:
document.addEventListener("DOMContentLoaded", function () {
if (window.innerWidth < 768) {
var tooltips = document.querySelectorAll('[data-bs-toggle="tooltip"]');
tooltips.forEach(function (tooltip) {
tooltip.removeAttribute('data-bs-toggle');
});
} else {
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl);
});
}
});
This script removes the tooltip functionality on small screens.
title
Attribute on Small ScreensModify the title
attribute dynamically:
document.addEventListener("DOMContentLoaded", function () {
if (window.innerWidth < 768) {
document.querySelectorAll('[data-bs-toggle="tooltip"]').forEach(function (el) {
el.removeAttribute("title");
});
}
});
This removes the tooltip title, preventing Bootstrap from showing tooltips on small devices.
This chatbot (Alphonsio) provides automated responses generated by machine-learning algorithms and relies on the accuracy of the underlying language models. While this Chatbot is programmed to provide accurate and relevant information, its information may not always be exhaustive, accurate, up-to-date or tailored to individual circumstances. It is not a substitute for professional advice or consultation with qualified experts. This chatbots and its responses are intended for informational purposes only and should not be used for commercial or business purposes. The creators of this chatbot are not liable for any damages or losses incurred as a result of using the information provided. By using our website, you acknowledge and agree to these terms. The data you submit to this chatbot is used to improve our algorithms. Under no circumstances should you submit sensitive data such as, but not limited to, personal data or passwords. The data you submit could then be made public.