动态定位livechatinc

时间:2014-05-20 01:31:37

标签: jquery

我们在网站上使用www.livechatinc.com LiveChat。在我们的页面加载后,他们将实时聊天代码写入我们的页面。我想在页面加载后动态地将livechat div放在我们的页面上。如果我尝试使用jQuery document.ready执行此操作,它不起作用,因为当时在DOM中不存在livechat div。 是否有一些jQuery函数我可以编写以继续检查div的DOM,一旦找到div,我就可以定位它并停止检查。

1 个答案:

答案 0 :(得分:2)

我从未专门使用过LiveChat,但您可以使用setInterval完成此操作。这允许您每隔很多毫秒运行一个函数。例如,

  $(document).ready(function(){  
      myInterval = setInterval(function(){

         //run something like this every 3 seconds
         var livechat = document.getElementById("livechat-div");

         if(livechat){ //check if the div exists

            //if it does, position div

            //clear the interval since we no longer need to look for the div
            clearInterval(myInterval);

         }
      }, 3000);
  });

http://jsfiddle.net/HNRDe/