Kod
<script type="text/javascript">
function streampublish_popup(){
FB.ui(
{
method: 'stream.publish',
attachment: {
name: 'Demo Pulish To Wall With Popup And Call Back Function',
description: (
"I have experienced with Share On Wall with Popup windows and would like to share with you. Check it now."
),
href: "http://4rapiddev.com/facebook-graph-api/facebook-publish-to-wall-with-popup-or-dialog-and-call-back/",
media: [
{
'type':'image',
'src':'http://4rapiddev.com/wp-content/uploads/2011/09/Example-Publish-To-Wall-With-Popup-Windows.jpg',
'href':'http://4rapiddev.com/facebook-graph-api/facebook-publish-to-wall-with-popup-or-dialog-and-call-back/'
}
]
},
display: 'popup'
},
function(response) {
if (response && response.post_id) {
$("#filmik").show();
} else {
$("#notfilmik").show();
}
});
}
</script>
function streampublish_popup(){
FB.ui(
{
method: 'stream.publish',
attachment: {
name: 'Demo Pulish To Wall With Popup And Call Back Function',
description: (
"I have experienced with Share On Wall with Popup windows and would like to share with you. Check it now."
),
href: "http://4rapiddev.com/facebook-graph-api/facebook-publish-to-wall-with-popup-or-dialog-and-call-back/",
media: [
{
'type':'image',
'src':'http://4rapiddev.com/wp-content/uploads/2011/09/Example-Publish-To-Wall-With-Popup-Windows.jpg',
'href':'http://4rapiddev.com/facebook-graph-api/facebook-publish-to-wall-with-popup-or-dialog-and-call-back/'
}
]
},
display: 'popup'
},
function(response) {
if (response && response.post_id) {
$("#filmik").show();
} else {
$("#notfilmik").show();
}
});
}
</script>
i
Kod
<script>
$(document).ready(function(){
FB.getLoginStatus(function(response) {
if (response.status == 'connected') {
var user_id = response.authResponse.userID;
var page_id = "452234554793988"; //coca cola
var fql_query = "SELECT uid FROM page_fan WHERE page_id =" + page_id + " and uid=" + user_id;
var the_query = FB.Data.query(fql_query);
the_query.wait(function(rows) {
if (rows.length == 1 && rows[0].uid == user_id) {
$("#filmik").show();
//here you could also do some ajax and get the content for a "liker" instead of simply showing a hidden div in the page.
} else {
$("#blokada").show();
//and here you could get the content for a non liker in ajax...
}
});
} else {
// user is not logged in
}
});
});
</script>
$(document).ready(function(){
FB.getLoginStatus(function(response) {
if (response.status == 'connected') {
var user_id = response.authResponse.userID;
var page_id = "452234554793988"; //coca cola
var fql_query = "SELECT uid FROM page_fan WHERE page_id =" + page_id + " and uid=" + user_id;
var the_query = FB.Data.query(fql_query);
the_query.wait(function(rows) {
if (rows.length == 1 && rows[0].uid == user_id) {
$("#filmik").show();
//here you could also do some ajax and get the content for a "liker" instead of simply showing a hidden div in the page.
} else {
$("#blokada").show();
//and here you could get the content for a non liker in ajax...
}
});
} else {
// user is not logged in
}
});
});
</script>
I teraz chciałbym aby:
Jeśli (response && response.post_id) - to z 1 skryptu and (rows.length == 1 && rows[0].uid == user_id) - to z 2 skryptu to wtedy aby wyświetlało
$("#filmik").show();
Jak to zrobić ?
Jak muszę przerobić kod ?
Proszę o pomoc
