Helping ordinary people create extraordinary websites!
HOME TUTORIALS SCRIPTS WEB HOSTING BLOG FORUM
Get Our Newsletter
Your Email:
Webmaster Blog

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.




Related Posts
» Unexpected return value from Facebook FQL.query
» 8 Designers You Didn’t Know You Idolized
» Turn Your Wordpress Blog into a Social Network
» Getting Facebook user data, legally
» Designing and Coding a Wordpress Theme From Scratch (Part 6)
 


Leave a Reply