Are working with an app and need to execute the function postCook after 10s but something is wrong. Just worked with Javascript / Jqurey for a couple of day's so still not flooowing :)
But have now been stuck on this for several hours so even if it breaks my heart i need to ask for advice
$(document).ready(function() { setTimeout("postCook", 10000);
};
function postCook()
{
FB.api(
'/me/app:action',
'post',
{ game: '<?php echo get_permalink(); ?>' },
function(response) {
if (!response || response.error) {
alert('Error occurred');
} else {
alert('Successful! Action ID: ' + response.id);
}
});
}
Can execute it with button without problem so 100% sure that it's within setTimeout
)at.ready(function() {...};->.ready(function() {...})– Andreas Mar 9 at 19:17