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.

My goal is to allow the users to hover over other users posts and see information such as a profile picture, user rating, total comment count, etc.

I have the chat system working, and I know how to write the hover function to display the information. However, since the system is refreshing every few seconds to update the chat, my javascript/jquery doesn't seem to be working.

Any thoughts on how this can be accomplished?

share|improve this question
You refresh the whole page?? I'm not sure but I think that's the wrong way. You'd better append with ajax new chats every few seconds based on the time of post. How can someone hover if every few seconds the page refreshes? – viper Aug 6 '11 at 1:59
I only refresh the div containing the chats (every 5000ms), not the rest of the page. The jquery hover function doesn't even attempt to work. I would atleast expect it to work until the refresh and then go away, but it doesn't even do that. – user833085 Aug 6 '11 at 6:43
Unfortunately, I'm not yet able to read code directly out of your brain, though I'm working on it. In the meantime, could you add it to your question? – Nick Johnson Aug 8 '11 at 4:24
Its okay, I figured the problem out, jquery has a nifty .live() function, which is especially useful for ajax. – user833085 Aug 8 '11 at 7:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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