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.

Good Evening, i just want to know the name of the technology used to make the pop up box that appears when someone likes or comments on our posts and disappears after approximately 3 seconds, is it possible to make it with JavaScript or JQuery and if that is possible please could you give me an example or a link to something that demonstrates that.

share|improve this question
1  
@SLaks Facebook is not using serTimeout for sure! :-) – behz4d Mar 3 at 15:47
@behz4d: Wrong. – SLaks Mar 3 at 18:46
@SLaks Actually they could not use it! it's obvious that they are using some Push techniques... – behz4d Mar 3 at 20:27
@behz4d: I thought he was asking about the fade-out. – SLaks Mar 4 at 4:07

closed as not a real question by GrailsGuy, bfavaretto, Werner Vesterås, Soner Gönül, Frank van Puffelen Mar 3 at 22:16

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 0 down vote accepted

the appearance/ disappearance ... easy to do with javascript/jquery...

The actual notification... that comes from the server it's a push technology...

You can look for ajax push (one method is comet)

Because HTTP is based on request from client to server... to push something from the server to client it's a little bit more complicated... imagine everything like "this page is only to display my products but I can't show them to you only if you want to!"

Before HTML5 this wasn't possible only with work arounds like Ajax Push or small flash objects in page that connect via socket to a server on a port... but now you can do it with WebSockets...

An ajax push example would be here: http://www.primefaces.org/showcase/push/chat.jsf

share|improve this answer

From Wikipedia:

Comet is a web application model in which a long-held HTTP request allows a web server to push data to a browser, without the browser explicitly requesting it.

Search for COMET, or you could use server side JavaScript like backbone.js or nod.js

More on COMET:

http://www.zeitoun.net/articles/comet_and_php/start
http://en.wikipedia.org/wiki/Comet_%28programming%29
http://cometd.org/search/node/jquery

More on Node.js

http://nodejs.org

And more on backbone.js

http://backbonejs.org
share|improve this answer

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