This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! normalize.css commit fe56763 | MIT License | github.com/necolas/normalize.css */ | |
| html { | |
| box-sizing: border-box; | |
| font-family: sans-serif; | |
| font-size: 16px; | |
| -ms-overflow-style: scrollbar; | |
| -ms-text-size-adjust: 100%; | |
| -webkit-tap-highlight-color: transparent; | |
| -webkit-text-size-adjust: 100%; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // deparam | |
| // | |
| // Inverse of $.param() | |
| // | |
| // Taken from jquery-bbq by Ben Alman | |
| // https://github.com/cowboy/jquery-bbq/blob/master/jquery.ba-bbq.js | |
| var deparam = function( params, coerce ) { | |
| var obj = {}, | |
| coerce_types = { 'true': !0, 'false': !1, 'null': null }; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html> | |
| <head> | |
| <title>Print Part of a Page With jQuery</title> | |
| <script type="text/javascript" src="jquery-1.3.2.js"></script> | |
| <script type="text/javascript" src="jquery.print.js"></script> | |
| <script type="text/javascript"> | |
| // When the document is ready, initialize the link so | |
| // that when it is clicked, the printable area of the |