我正在尝试将这个 jquery 插件实现到 Drupal 中。 http://tympanus.net/codrops/2010/07/20/latest-tweets-tooltip/
我将以下 js 添加到我的 theme.info 和所需的 css 中。
scripts[] = js/jquery.twitter.search.js
scripts[] = js/jquery.twitterpopup.js
我用以下方法调用了插件
(function($) {
$('.article').find('.twitter_search').twitterpopup();
}(jQuery));
我不确定插件无法正常工作有什么问题。我希望有人能指导我完成这个。
HTML
<div class="article">
<span class="twitter_search">experiment</span>
</div>