have a trouble with sharing site material via facebook's sharer.php
Open window with standart code:
url = "http://www.facebook.com/sharer.php?s=100&p[title]=" + encodeURIComponent(title) + "&p[summary]=" + encodeURIComponent(description) + "&p[url]=" + encodeURIComponent(url) + "&p[images][0]=" + encodeURIComponent(image) + "&nocache=" + randomString(8);
window.open(url, '', 'toolbar=0,status=0,width=626,height=436');
where p[images][0] has correct image url.
Full URL example: CLICKCLAC
As you can see in Firebug there is right image in DOM tree, but it has "hidden_elem" class hang. Any ideas how to make it work, friends?
Or how to launch my js in iframe window :D