User:Bongolium500/common.js: Difference between revisions
From Jenny Everywhere Wiki
Bongolium500 (talk | contribs) (Created page with "mw.hook('wikipage.content').add(function(){ $('.blur-image .thumbinner').each(function(i, obj) { var img = $(obj).find(.thumbimage); var width = $(img).width(); var height = $(img).height(); $(obj).append($("<div></div>").text("Click to view .").width(width).height(height).css("color":"white", "background-color":"black")); }); });") |
Bongolium500 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
mw.hook('wikipage.content').add(function(){ | mw.hook('wikipage.content').add(function(){ | ||
$('.blur-image | $('.blur-image').each(function(i, obj) { | ||
var img = $(obj).find(.thumbimage); | var img = $(obj).find(.thumbimage); | ||
var width = $(img).width(); | var width = $(img).width(); | ||
var height = $(img).height(); | var height = $(img).height(); | ||
$(obj).append($("<div></div>").text("Click to view .").width(width).height(height).css("color":"white", "background-color":"black")); | $(obj).find(".thumbinner").append($("<div></div>").text("Click to view .").width(width).height(height).css("color":"white", "background-color":"black")); | ||
}); | }); | ||
}); | }); |
Revision as of 17:42, 18 July 2024
mw.hook('wikipage.content').add(function(){
$('.blur-image').each(function(i, obj) {
var img = $(obj).find(.thumbimage);
var width = $(img).width();
var height = $(img).height();
$(obj).find(".thumbinner").append($("<div></div>").text("Click to view .").width(width).height(height).css("color":"white", "background-color":"black"));
});
});