JSFiddle - React, Tailwind, and code Playground

by janetyc

HTML

<script>
    function fbShare(url, title, descr, image, winWidth, winHeight) {
        var winTop = (screen.height / 2) - (winHeight / 2);
        var winLeft = (screen.width / 2) - (winWidth / 2);
        window.open('http://www.facebook.com/sharer.php?s=100&p[title]=' + title + '&p[summary]=' + descr + '&p[url]=' + url + '&p[images][0]=' + image, 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight);
    }
</script>
<a href="javascript:fbShare('http://chiaofriendly.com/books/OGDA2016', 'Test Title', 'Test Summary', 'http://goo.gl/dS52U', 520, 350)">Share</a>