JSFiddle - React, Tailwind, and code Playground
by iamjpg
JavaScript
function john() {
var w = 480;
var h = 380;
var x = Number((window.screen.width - w) / 2);
var y = Number((window.screen.height - h) / 2);
window.open(
"https://plus.google.com/share?url=" +
encodeURIComponent(location.href) +
"&title=" +
encodeURIComponent(document.title),
"",
"width=" + w +",height=" + h + ",left=" + x + ",top=" + y +",resizable=yes"
);
}
john()