diff --git a/index.html b/index.html index a91a8df3..b86c5a65 100644 --- a/index.html +++ b/index.html @@ -104,6 +104,14 @@ color: rgb(255, 230, 86); } + .learn_more { + color: rgb(0, 85, 212) + } + + .learn_more:hover { + color: rgb(224, 127, 0) + } + @@ -153,7 +161,7 @@ // Get Kanji from GET request const kanji_raw = $.urlParam('kanji'); - if(kanji_raw != undefined) + if(kanji_raw !== undefined) { // Get character representation from URL representation const kanji = decodeURIComponent(kanji_raw); @@ -199,6 +207,10 @@ $("#kanji_meaning").html((typeof meaning !== typeof undefined) ? meaning : "Apparently this has no meaning.
Tell me about it so I can fix it."); $("#kun_yomi").html((typeof kun !== typeof undefined) ? "Kun: " + kun : ""); $("#on_yomi").html((typeof on !== typeof undefined) ? "On: " + on : ""); + if(typeof meaning !== typeof undefined) { + $(".learn_more").attr("href", "https://www.jisho.org/search/" + kanji + "%20%23kanji"); + $(".learn_more").attr("style", ""); + } }); } @@ -231,6 +243,9 @@

+
+ +
@@ -239,13 +254,13 @@