Hi,
Is my request clear?
I think yes, see video at
https://youtu.be/EyN01brpT-E
It does not work. I put it in user.js and custom code "helix Ultimate"
Unfortunately I can only try to inject code with a browser console in runtime (as you can see in the video), I can't check this code with a real document ready trigger without access to your backend.
Try this code:
jQuery(function ($) {
jQuery(document).ready(function(){
jQuery(".hasPopover").popover('dispose').popover({"html": true,"container": "body","placement":"top"});
jQuery('.controls').hover(function(){jQuery(this).closest('.control-group').find('.hasPopover').popover('show');});
jQuery('.controls').mouseout(function(){jQuery(this).closest('.control-group').find('.hasPopover').popover('hide');});
});
});
if also this code will not works then I need to have backend access to make some test.