ranchodeluxemedia
12/3/2013 - 5:38 PM

Open links in pop-up window

Open links in pop-up window

// Open social links in pop window
$(".share-box a.social").click(function(b) {
	newwindow=window.open($(this).attr('href'),'','height=600,width=600');
    if (window.focus) {newwindow.focus()}
    return false;
});