Newer
Older
git_practice_2019 / html5_css3 / print.js
@sasaki sasaki on 16 Jul 2019 397 bytes add in rinkou4
$(function(){
    if (window.onbeforeprint !== undefined) {
	window.onbeforeprint = ShowLink;
	window.onafterprint = HideLinks;
    }
});

function ShowLinks(){
    $("a").each(function() {
	$(this).data("linkText", $(this).text());
	$(this).append(" (" + $(this).attr("href") + ")");
    });
}

function HideLinks(){
    $("a").each(function(){
	$(this).text($(this).data("linkTest"));
    });
}