หยุดยิงลิงค์ออกด้วย javascript
การส่งลิ้งไป amazon เยอะๆ ทำให้อันดับของสินค้า เว็บ amazon ดีขึ้นเรื่อยๆ (มีลิ้งมหาศาลส่งไป)
ไม่ว่าจะ nofollow ก็ตาม แล้วเปลี่ยนมาใช้ javascript
1. สร้างไฟล์ javascript
function lk(x,y){
var l = "http://www.amazon.com/" + x + "/dp/" + y + "/?tag=your-tag-id";
window.location = (l);
}
อย่าลืม your-tag-id เปลี่ยนของคุณเองนะครับ จากนั้นให้บันทึกไฟล์เป็น link.js
2. วางโค้ดนี้ใน header ของเพจ ตามนี้
<html>
<head>
<title>xxx</title>
<script type="text/javascript" src="link.js"></script>
</head>
<body>
…..
</body>
</html>
3. วางโค้ด css นี้ใน header ของเพจ ตามนี้
.go{color:#009ECE;text-decoration:underline;cursor:pointer;font-weight: bold;font-size: 12px;}
.go:hover{text-decoration: none;}
<html>
<head>
<title>xxx</title>
<script type="text/javascript" src="link.js"></script>
<style type="text/css">
.go{color:#009ECE;text-decoration:underline;cursor:pointer;font-weight: bold;font-size: 12px;}
.go:hover{text-decoration: none;}
</style>
</head>
<body>
…..
</body>
</html>
#009ECE นี้คือ สีของฟอนต์ ดูเพิ่มเติมได้ที่ hxxp://colorcombos.com/
4. วางสินค้าตามนี้
<div class=”go” onclick=”lk(‘xxx’,’yyy’);”>zzz</div>
xxx คือ ชื่อสินค้าที่จะเป็นอะไรก็ได้ ขอแค่ไม่ให้มีช่องว่าง เช่น 14ct-3-Stone-Diamond-Ring-in-10K-White-Gold
yyy คือ isbn ของสินค้าจาก amazon เช่น B00479I54S
zzz คือ ชื่อสินค้าของเรา เช่น 1/4ct 3 Stone Diamond Ring in 10K White Gold
ตัวอย่าง sekr.txt
<div class=”go” onclick=”lk(’14ct-3-Stone-Diamond-Ring-in-10K-White-Gold’,’B00479I54S’);”>1/4ct 3 Stone Diamond Ring in 10K White Gold</div>
เข้าดูตัวอย่าง hxxp://www.go2store.com/share/link.php
ตัวอย่าง
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN">
<html>
<head>
<title>SEKr javascript</title>
<script type="text/javascript" src="link.js"></script>
<style type="text/css">
.go{color:#009ECE;text-decoration:underline;cursor:pointer;font-weight: bold;font-size: 12px;}
.go:hover{text-decoration: none;}
</style>
</head>
<body>
<div class="go" onclick="lk('14ct-3-Stone-Diamond-Ring-in-10K-White-Gold','B00479I54S');">1/4ct 3 Stone Diamond Ring in 10K White Gold</div>
</body>
</html>
ตัวอย่าง link.js
function lk(x,y){
var l = "http://www.amazon.com/" + x + "/dp/" + y + "/?tag=your-tag-id";
window.location = (l);
}