Helping ordinary people create extraordinary websites!
 

Creating facebook like popup dialog in your web app

by Hasin Hayder


If you are a Facebook application developer, you are certainly familiar with the dialog tool they provide for you. You can display HTML contents, a HTML block and set callback functions for default buttons. It is really very easy and enjoying to use the dialog component. But what if you want to use it in your local web application? There is no way you can import that component for your web app. So all you have to do is to create one from scratch.

But wait, there are some good people over there who already feel the pain and developed a facebook like dialog component for you. This component comes as a plugin of jQuery and works really cool. You can display static HTML contents as well as load external content via AJAX. You can find this component named “Facebox” by clicking here

Integrating Facebox with your site is easy. Just include the javascript file of jquery and facebox. And add the following script at the end of your page.

<script>
$(document).ready(function(){
$('a[@rel*=facebox]').facebox();
});
</script>

Lets have a look at the following example

1. To load an external page

<a href="http://www.google.com/logos/spring08.gif" rel="facebox">text</a>

2. To display static content

jquery.facebox("Here is some <b>static content</b>");

or

$.facebox("Here is some <b>static content</b>");

Thats it! you got a nice dialog component for your web application.





Showcase Your Tutorials

Related Posts
» Unexpected return value from Facebook FQL.query
» Turn Your Wordpress Blog into a Social Network
» Getting Facebook user data, legally
» 8 Designers You Didn't Know You Idolized
» Open Source Social Networking Server: Built on LAMP!
 


This post has One Response so far.
  1. hanzi Says:
    July 1st, 2009 at 6:59 am

    How can I make this so that it pops up when my index page finishes loading or while its loading (either way) I just want to display specials before they start browsing the site.

    thanx

Leave a Reply



GET OUR NEWSLETTERS