groups

name language licence
cufon add code Other Other
jQuery function Other Other
show load pic while loading page Java Other
jQuery Loop Other Other
jQuery class to ui HTML Other
show address after link in print (jQuery) HTML Other
clear form Other Other
DD_roundies HTML Other

< 1 2 >



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...)