Here is the code:
<div id="fb-root">
</div>
<script type="text/javascript">
window.fbAsyncInit = function () {
FB.init({
appId: 'myappID',
channelUrl: '//bijaybaniya.com.np/Home.aspx',
status: true,
cookie: true,
xfbml: true
});
FB.getLoginStatus(function (response) {
if (response.status === 'connected') {
alert('ok');
} else if (response.status === 'not_authorized') {
alert('not_authorized');
} else {
alert('not_logged_in');
}
}, true);
};
(function (d) {
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) { return; }
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
} (document));
</script>
<div class="fb-login-button" scope="email">
Login with Facebook</div>
As montioned in https://developers.facebook.com/docs/reference/javascript/
I have tried to integrate facebook to my site. I got alogin button and pop up iframe too. After sucessfull login the iframe disappears.While reading over Internet i Found that FB.getLoginStatus() will check the status if ffacebook is connected or not. But this statement isnot executing.Please help me, where i have done wrong.

Thanks
channelUrlyour giving is nonsense, because that URL delivers just the home page of your site – please consult the docs for what the channel-URL is actually supposed to contain. – CBroe Aug 21 '12 at 12:34