User:Bongolium500/common.js: Difference between revisions

From Jenny Everywhere Wiki
No edit summary
No edit summary
Line 2: Line 2:
$('.blur-image').each(function(i, obj) {
$('.blur-image').each(function(i, obj) {
console.log("in loop");
console.log("in loop");
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).find(".thumbinner").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:47, 18 July 2024

console.log("Executing");
$('.blur-image').each(function(i, obj) {
	console.log("in loop");
	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"));
});