0

Here is my jsfiddle: My fiddle

After drag n drop of "rule/event" class into "layout" class, how to create a popover with HTML form on-click or double-click of the dropped components?

$('[rel="popover"]').popover({
    alert("hi");
        container: 'body',
        html: true,
        content: function () {
            var clone = $($(this).data('popover-content')).clone(true).removeClass('hide');
            return clone;
        }
    }).click(function(e) {
        e.preventDefault();
    });
Inchara Raveendra
  • 1,617
  • 3
  • 15
  • 31
  • Maybe you find the solution here: https://stackoverflow.com/questions/16990573/how-to-bind-bootstrap-popover-on-dynamic-elements – zuluk Jun 08 '17 at 07:38
  • Possible duplicate of [How to bind bootstrap popover on dynamic elements](https://stackoverflow.com/questions/16990573/how-to-bind-bootstrap-popover-on-dynamic-elements) – zuluk Jun 08 '17 at 07:38

0 Answers0