I have a video in my site but before playing the video, visitor must like my facebook page. The problem that when he come back to the website he could not see the video again because the like button in inactive. I'm using javascript. Thank you for your understanding and I'm waiting for your help
function setCookie(c_name, value, expiredays) {
var exdate = new Date();
exdate.setDate(exdate.getDate() + expiredays);
document.cookie = c_name + "=" + escape(value) + ((expiredays == null) ? "" : ";expires=" + exdate.toGMTString());
}
function getCookie(c_name) {
if(document.cookie.length > 0) {
c_start = document.cookie.indexOf(c_name + "=");
if(c_start != -1) {
c_start = c_start + c_name.length + 1;
c_end = document.cookie.indexOf(";", c_start);
if(c_end == -1) c_end = document.cookie.length;
return unescape(document.cookie.substring(c_start, c_end));
}
}
return "";
}
function lecture_vid() {
var cc = '<iframe class="youtube-player" type="text/html" width="640" height="400" src="http://www.youtube.com/embed/IAsjjSkaWVc?autoplay=1" frameborder="0"></iframe>';
$("#vid_real").html(cc);
}
FB.Event.subscribe('edge.create', function(href, widget) {
setCookie('edgeTV', '1', 350);
faceclick();
});
function faceclick() {
lecture_vid();
$('#confirme_jaime').empty().hide();
}