changeset 2:ce30c81f3f0c

(none)
author Edho Arief <me@myconan.net>
date Sun, 03 May 2015 04:21:46 +0000
parents f0c125358b24
children 7687bbda0bb4
files jiku-chu-direct-link.js
diffstat 1 files changed, 12 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/jiku-chu-direct-link.js	Sun May 03 04:04:42 2015 +0000
+++ b/jiku-chu-direct-link.js	Sun May 03 04:21:46 2015 +0000
@@ -1,18 +1,22 @@
 // ==UserScript==
 // @name         Jiku-Chu direct link
 // @namespace    https://myconan.net
-// @version      1.0
+// @version      2.0
 // @description  Make proper link on Jiku-Chu pages
 // @author       nanaya
 // @match        http://www.jiku-chu.com/products/list.php?*
 // @grant        none
 // ==/UserScript==
 
-$(".title a").each(function() {
+;(function() {
+  console.log("hi")
   var
-    $el = $(this),
-    productId = $el.attr("onclick").replace(/.*product_id=(\d+).*/, "$1"),
-    url = "/products/detail.php?product_id=" + productId
-  $el.attr("href", url)
-  $el.attr("onclick", "")
-})
\ No newline at end of file
+    links = document.querySelectorAll(".title a, .photo a")
+  Array.prototype.forEach.call(links, function(el) {
+    var
+      productId = el.getAttribute("onclick").replace(/.*product_id=(\d+).*/, "$1"),
+      url = "/products/detail.php?product_id=" + productId
+    el.setAttribute("href", url)
+    el.setAttribute("onclick", "")
+  })
+}).call();
\ No newline at end of file