Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Tweet and Truncate plugin simultanously, so if the tweet it too long it gets truncated after x chars.

$().ready(function() {

  $(".tweets").tweet({
    join_text: "auto",
    username: "dave",
    avatar_size: 18,
    count: 1,
    auto_join_text_default: "",
    loading_text: "Loading tweet..."
  });

  if ( $('.tweet_text')[0] ) { 
    alert('yay');
  }

});

... so the tweet function loads the tweet, but jquery doesn't find it! Is it possible to delay the next function so it can find it?

Thanks

share|improve this question
Does the Tweet plugin not have a callback function you can use to grab the tweet's content? – WillemLabu Jan 27 '12 at 9:57

2 Answers

up vote 1 down vote accepted

jquery has a delay function http://api.jquery.com/delay/

share|improve this answer
tried, doesn't work – Nimbuz Jan 27 '12 at 11:57
the delay function does work. Perhaps you should show what you tried. – Scott Jan 27 '12 at 11:57
how should I use? can you please update the JS posted in the description? thanks! – Nimbuz Jan 27 '12 at 13:26

There is a delay method in JQuery however a better solution would be to truncate in the tweet callback method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.