Hello,
The root of this and similar problem
"no such method 'hide' for tooltip widget instance"
that both JqueryUI and Boostrap have tooltip method,
JqueryUI works like:
$el.tooltip("option","show");
$el.tooltip("option","hide");
Boostrap works like:
$el.tooltip("show");
$el.tooltip("hide");
So, you need to reorder your scripts, for example with requirejs, you need to make Boostrap be loaded after JqueryUI
var $ = require('jquery');
require('jquery_ui');
require('bootstrap');
and adjust config for requirejs like:
bootstrap: {
deps: ['jquery', 'jquery_ui']
},
Thank You!!