MediaWiki:Common.js
Revision as of 13:27, 9 May 2017 by Master of pants (talk | contribs) (Created page with "→Any JavaScript here will be loaded for all users on every page load.: →put here by Dotsarecoolp: $(document).ready(function() { $("[yt-ll-data]").each(function()...")
/* Any JavaScript here will be loaded for all users on every page load. */ /* put here by Dotsarecoolp */ $(document).ready(function() { $("[yt-ll-data]").each(function() { var url = $(this).attr("yt-ll-data"); $(this).css("background-image","url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><polygon points='0,0 100,50 0,100' style='fill:white;' /></svg>\"),url(https://img.youtube.com/vi/" + url + "/0.jpg)"); $(this).click(function() { $(this).html("<iframe width='100%' height='100%' src='https://www.youtube.com/embed/" + url + "' frameborder='0'></iframe>"); }); }); });