blob: 8b9a658e1d274b4ef0a4ce76b93e222b9100e6df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
$(document).ready(function(){
$(".twitter-share-button").click(function (e) {
e.preventDefault();
var self = $(this);
var url = encodeURIComponent(self.data("url"));
var text = encodeURIComponent(self.data("text"));
window.open(`https://twitter.com/intent/tweet?text=${text}&url=${url}`, "_blank").focus();
});
$(".linkedin-share-button").click(function (e) {
e.preventDefault();
var self = $(this);
var url = encodeURIComponent(self.data("url"));
// var text = encodeURIComponent(self.data("text"));
window.open(`https://www.linkedin.com/sharing/share-offsite/?url=${url}`, "_blank").focus();
});
$(".facebook-share-button").click(function (e) {
e.preventDefault();
var self = $(this);
var url = encodeURIComponent(self.data("url"));
// var text = encodeURIComponent(self.data("text"));
window.open(`https://www.facebook.com/sharer/sharer.php?u=${url}`, "_blank").focus();
});
$(".telegram-share-button").click(function (e) {
e.preventDefault();
var self = $(this);
var url = encodeURIComponent(self.data("url"));
var text = encodeURIComponent(self.data("text"));
window.open(`https://t.me/share/url?url=${url}&text=${text}`, "_blank").focus();
});
$(".pinterest-share-button").click(function (e) {
e.preventDefault();
var self = $(this);
var url = encodeURIComponent(self.data("url"));
var text = encodeURIComponent(self.data("text"));
window.open(`https://pinterest.com/pin/create/button/?url=${url}&media=&description=${text}`, "_blank").focus();
});
});
|