booking/assets/js/button-tooltip-custom.js
2025-03-24 22:58:00 +03:00

16 lines
446 B
JavaScript

// "use strict";
// var button_tooltip_custom = {
// init: function() {
// $("button").hover(function() {
// var buttontooltiptext = $(this).attr("class");
// $("button").attr("data-original-title", buttontooltiptext);
// });
// // $("button").tooltip();
// $("a").tooltip();
// $("input").tooltip();
// }
// };
// (function($) {
// "use strict";
// button_tooltip_custom.init()
// })(jQuery);