-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (36 loc) · 1.01 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Shares</title>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/jquery.shares.js"></script>
<script>
$(function() {
$('a').each(function() {
$(this).shares({
counts: $(this).next()
});
});
});
</script>
</head>
<body>
<div>
<a href="http://www.nba.com" data-shares="facebook">NBA to Facebook</a>
<span></span>
</div>
<div>
<a href="http://www.ebay.com/" data-shares="twitter">eBay to Twitter</a>
<span></span>
</div>
<div>
<a href="http://www.bestbuy.com/" data-shares="google">Bestbuy to Google Plus</a>
<span></span>
</div>
<div>
<a href="http://www.espn.com/" data-shares="pinterest" data-image="http://a.espncdn.com/photo/2014/0327/nfl_divisional1_288x75.jpg">ESPN to Pinterest</a>
<span></span>
</div>
</body>
</html>