groups

name language licence
show address after link in print (jQuery) HTML Other
add dock tile Other Other
simplepie google calender intergration PHP Other
code lines Other Other
iui add HTML Other
blueprint class HTML Other
round corner hack CSS Other
.htaccess file upload bigger PHP WA

< 1 2 3 4 5 6 >



language: HTML
licence: Other

show address after link in print (jQuery)

options: view full snippetsend to code collector
uses jQuery

===========================================

<script type="text/javascript">
    $(function() {
        //Check to see if browser supports onbeforeprint (IE6, IE7 and IE8)
        if (window.onbeforeprint !== undefined) {
            //Since the browser is IE, add event to append link text before print
            window.onbeforeprint = ShowLinks;
            
            //Remove the link text since the document has gone to the printer
            window.onafterprint = HideLinks;
        }
        else {
	
(Continues...)