m (test) |
m (test) |
||
Line 32: | Line 32: | ||
function addClass(){ | function addClass(){ | ||
var target = $(this).prop("target"); | var target = $(this).prop("target"); | ||
console.log(target); | |||
$("span." + target).each(function(){ | $("span." + target).each(function(){ | ||
$(this).addClass("highlight"); | $(this).addClass("highlight"); |
Revision as of 02:37, 8 March 2020
/* Any JavaScript here will be loaded for all users on every page load. */
//2kki map frame
mw.hook('wikipage.content').add(function($content) {
$content.find('.kkiDiv:not(.loaded)').each(function() {
var $this = $(this);
$this.html(
$('<iframe>', {
border: 0,
frameborder: 0,
scrolling: 'no',
class: 'kkiFrame',
src: 'https://yume-2kki-explorer.herokuapp.com/',
})
).addClass('loaded');
});
});
(function () {
//$(".highlightable").click(removeClass);
/*function removeClass(){
$("span.hightlightable").each(function(){
if ($(this).hasClass("highlight")) {
$(this).removeClass("highlight");
}
});
console.log("This is working");
}*/
$(".iconSearch").click(addClass);
function addClass(){
var target = $(this).prop("target");
console.log(target);
$("span." + target).each(function(){
$(this).addClass("highlight");
});
console.log("This is working");
}
}());