将鼠标悬停在第三方广告上时出现jQuery UI工具提示

时间:2017-05-04 17:01:15

标签: javascript jquery jquery-ui tooltip

问题

我遇到了涉及第三方广告的jQuery UI工具提示的问题。当我将鼠标悬停在广告上时,会看到一个带有“第三方内容”文字的工具提示。我只希望工具提示出现在类.fa-question-circle

的元素上
  • 我可以看到广告是通过iframe加载的,它包含title=3rd party ad content。我只是希望能够阻止用户看到它。

scripts.js中

  // Tooltips
  $(".fa-question-circle").tooltip({
    tooltipClass: "popup",
    position: {
      my: "center bottom-15",
      at: "center top"
    },
    hide: false
  });

1 个答案:

答案 0 :(得分:0)

最后看起来像这样:

  // Tooltips
  $(document).tooltip({
    tooltipClass: "popup",
    items: ".fa-question-circle",
    position: {
      my: "center bottom-15",
      at: "center top",
      collision: 'none'
    },
    hide: false
  });