diff --git a/changelog/62_UNRELEASED_xxxx-xx-xx.md b/changelog/62_UNRELEASED_xxxx-xx-xx.md
index 54f596cf..c57598bc 100644
--- a/changelog/62_UNRELEASED_xxxx-xx-xx.md
+++ b/changelog/62_UNRELEASED_xxxx-xx-xx.md
@@ -56,6 +56,7 @@
- Filtering of accounts is now possible
- => See the new `config.php` options
- Some night mode style improvements (thanks @BlizzWave and @KTibow)
+- Help tooltips are now additionally also triggered by clicking on them (instead of only hovering them, which doesn't work on mobile / touch devices)
- Fixed that the number picker up/down buttons did not work when the input field was empty or contained an invalid number
### API fixes
diff --git a/public/js/extensions.js b/public/js/extensions.js
index 0900a786..8b16e2b6 100644
--- a/public/js/extensions.js
+++ b/public/js/extensions.js
@@ -51,16 +51,6 @@ RemoveUriParam = function(key)
window.history.replaceState({}, "", decodeURIComponent(`${location.pathname}?${queryParameters}`));
};
-IsTouchInputDevice = function()
-{
- if (("ontouchstart" in window) || window.DocumentTouch && document instanceof DocumentTouch)
- {
- return true;
- }
-
- return false;
-}
-
BoolVal = function(test)
{
if (!test)
diff --git a/public/js/grocy.js b/public/js/grocy.js
index 034ac2ec..d5180f07 100644
--- a/public/js/grocy.js
+++ b/public/js/grocy.js
@@ -368,14 +368,6 @@ window.FontAwesomeConfig = {
searchPseudoElements: true
}
-// Don't show tooltips on touch input devices
-if (IsTouchInputDevice())
-{
- var css = document.createElement("style");
- css.innerHTML = ".tooltip { display: none; }";
- document.body.appendChild(css);
-}
-
Grocy.FrontendHelpers = {};
Grocy.FrontendHelpers.ValidateForm = function(formId)
{
diff --git a/views/choreform.blade.php b/views/choreform.blade.php
index 02a23722..bb1677e8 100644
--- a/views/choreform.blade.php
+++ b/views/choreform.blade.php
@@ -68,6 +68,7 @@