comparison client/digitallibrary/jquery/jquery-test-embedded.html @ 686:86c4174977f1 jquery

trying to work around IE bugs, debugging for IE
author hertzhaft
date Wed, 26 Jan 2011 18:37:03 +0100
parents 6c869c851c9a
children 0235a8e63818
comparison
equal deleted inserted replaced
685:6ec8c8ae02c7 686:86c4174977f1
7 body { 7 body {
8 background: silver; 8 background: silver;
9 } 9 }
10 10
11 div.digilib { 11 div.digilib {
12 float: left;
13 padding: 10px; 12 padding: 10px;
14 width: 220px; 13 width: 220px;
15 } 14 }
16 15
17 div.buttons { 16 div.buttons {
45 background-color: lightgrey; 44 background-color: lightgrey;
46 text-align: center; 45 text-align: center;
47 display: none; 46 display: none;
48 z-index: 1000; 47 z-index: 1000;
49 } 48 }
49
50 td {
51 vertical-align: top;
52 }
53
54 #debug {
55 background-color: beige;
56 position: absolute;
57 top: 400px;
58 padding: 0px 10px;
59 font-family: Arial;
60 font-size: 9pt;
61 }
62
63 div._log {
64 color: grey;
65 }
50 66
67 div._debug {
68 color: darkgreen;
69 }
70
71 div._error {
72 color: red;
73 }
74
51 </style> 75 </style>
52 76
53 <script type="text/javascript" src="jquery-1.4.4.js"></script> 77 <script type="text/javascript" src="jquery-1.4.4.js"></script>
54 <script type="text/javascript" src="dlGeometry.js"></script> 78 <script type="text/javascript" src="dlGeometry.js"></script>
55 <script type="text/javascript" src="jquery.digilib.js"></script> 79 <script type="text/javascript" src="jquery.digilib.js"></script>
71 95
72 </script> 96 </script>
73 </head> 97 </head>
74 98
75 <body> 99 <body>
76 100 <table>
77 <div id="digilib-1" class="digilib single"> 101 <tr>
78 <img src="http://digilib.biblhertz.it/digilib04/servlet/Scaler?dw=200&amp;dh=200&amp;fn=/digisprint/jquery/&amp;pn=1" /> 102 <td>
79 </div> 103 <div id="digilib-1" class="digilib single">
80 <div id="digilib-2" class="digilib"> 104 <img src="http://digilib.biblhertz.it/digilib04/servlet/Scaler?dw=200&amp;dh=200&amp;fn=/digisprint/jquery/&amp;pn=1" />
81 <img src="http://digilib.biblhertz.it/digilib04/servlet/Scaler?dw=200&amp;dh=200&amp;fn=/digisprint/jquery/ferrara" /> 105 </div>
82 </div> 106 </td>
83 <div id="digilib-3" class="digilib"> 107
84 <img src="http://digilib.biblhertz.it/digilib04/servlet/Scaler?dw=200&amp;dh=200&amp;fn=/digisprint/jquery/weide" /> 108 <td>
85 </div> 109 <div id="digilib-2" class="digilib">
86 <div id="digilib-4" class="digilib"> 110 <img src="http://digilib.biblhertz.it/digilib04/servlet/Scaler?dw=200&amp;dh=200&amp;fn=/digisprint/jquery/ferrara" />
87 <img src="http://digilib.biblhertz.it/digilib04/servlet/Scaler?dw=200&amp;dh=200&amp;fn=/digisprint/jquery/HansHolbein-NikolausKratzer" /> 111 </div>
88 </div> 112 </td>
113
114 <td>
115 <div id="digilib-3" class="digilib">
116 <img src="http://digilib.biblhertz.it/digilib04/servlet/Scaler?dw=200&amp;dh=200&amp;fn=/digisprint/jquery/weide" />
117 </div>
118 </td>
119
120 <td>
121 <div id="digilib-4" class="digilib">
122 <img src="http://digilib.biblhertz.it/digilib04/servlet/Scaler?dw=200&amp;dh=200&amp;fn=/digisprint/jquery/HansHolbein-NikolausKratzer" />
123 </div>
124 </td>
125 </tr>
126 </table>
127 <div id="debug">DEBUG</div>
89 </body> 128 </body>
90 </html> 129 </html>
91 130