User:TheDoctor8910/common.js: Difference between revisions

From Zelda Dungeon Wiki
Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
(Created page with "$(document).ready(() => { $('.ca-viewsource).css(display: 'none'); });")
 
No edit summary
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
$(document).ready(() => {
$(document).ready(function($) {
  $('.ca-viewsource).css(display: 'none');
    $(window).on("load", function() {
        if (window.console) {
            console.log("running user JS");
        }
$('#check-desktop').css("display", "block");
$('#check-mobile').css("display", "none");
$('#check-tablet').css("display", "none");
    });
});
});

Latest revision as of 14:59, April 27, 2021

$(document).ready(function($) {
    $(window).on("load", function() {
        if (window.console) {
             console.log("running user JS");
        }
	$('#check-desktop').css("display", "block");
	$('#check-mobile').css("display", "none");
	$('#check-tablet').css("display", "none");
    });
});