16 lines
559 B
JavaScript
16 lines
559 B
JavaScript
$(function() {
|
|
$(".share-facebook").click(function() {
|
|
window.open($(this).attr("href"), "win_facebook", "menubar=1,resizable=1,width=600,height=400");
|
|
return false;
|
|
});
|
|
|
|
$(".share-twitter").click(function() {
|
|
window.open($(this).attr("href"), "win_twitter", "menubar=1,resizable=1,width=600,height=350");
|
|
return false;
|
|
});
|
|
|
|
$(".share-googleplus").click(function() {
|
|
window.open($(this).attr("href"), "win_googleplus", "menubar=1,resizable=1,width=600,height=600");
|
|
return false;
|
|
});
|
|
}); |