• I’d like to integrate Twitter’s new @anywhere system into my website, and I did by downloading a plugin called ‘Twitter @anywhere Plus’. This adds the hover cards and a retweet button, and I have the ability to put a Tweet Box under my articles so people can tweet the article (or something else).

    What I’d like to do, is to NOT enable the Tweet Box under every article, but only in a page, so people can tweet me suggestions. (How) is this possible?

    I tried putting the Tweet Box code in the page editor, under HTML mode:

    <div id="tbox"></div>
    <script type="text/javascript">
    
      twttr.anywhere(function (T) {
    
        T("#tbox").tweetBox({
          height: 100,
          width: 400,
          defaultContent: "<YOUR DEFAULT TWEETBOX CONTENT HERE>"
        });
    
      });
    
    </script>

    And, you guessed it, this does not work.

    Again, is this possible to do? Thanks.

    (More info about the Twitter @anywhere system here.)

Viewing 1 replies (of 1 total)
  • Did you add the twitter javascript to your header?

    <script src="http://platform.twitter.com/anywhere.js?id=<MY API KEY>" type="text/javascript">
            </script>

Viewing 1 replies (of 1 total)
  • The topic ‘Twitter @anywhere Tweet Box’ is closed to new replies.