Articles in ‘(D)HTML’

Google Sky > Add KML Overlays

Wednesday, April 1st, 2009

Nach etwas Frickelei läuft es jetzt halbwegs rund:
http://www.eso.org/2007/test/google/index2.html

see At
[...more...]

Content Wrapper to avoid wrong clearing

Tuesday, March 10th, 2009

to avoid long empty spaces when clearing a float environment, wrap the content into a div with the following properties:

.wrapper {
position:relative;
overflow: hidden;
}

A Checkbox Group in PHP

Friday, February 29th, 2008
Und ich dachte, das ginge gar nicht... geht aber doch. Wenn die Checkboxen alle denselben Namen haben, überschreibt die zweite die erste etc. Aber in PHP gibts dafür ja Arrays. Und man glaubt es kaum, man kann den Namen der Checkbox als Array definier
[...more...]

Toggle Visibility und co

Sunday, November 18th, 2007
in fact, it's toggle display here. The difference is that visibility reserves the space on the page but just does not display the text there and display really collapses the text to the remaining parts.

JavaScript Function:

 <script lang
[...more...]

A Headline for a Selectbox

Sunday, September 2nd, 2007
<optgroup label="Einkaufen"/>

Image Gallery

Wednesday, April 4th, 2007
a small gallery of images
 <style>
 ul.gallery {list-style-type: none; margin:1em;}
 li.gallery {padding: 6px; float:left;  text-align:center;
             width:118px; height:160px;
             background:#DDDDDD; margin:2px; overflow:hid
[...more...]

More Fields!

Thursday, March 8th, 2007
Add more fields to a form:
 <script language = "JavaScript" type="text/javascript">
	 //	 alert ("hallo");
	 var counter = 1;
	 function addExchangeFiel
[...more...]

CheckClick

Thursday, January 11th, 2007
how to use a checkbox and "onClick"
 <SCRIPT TYPE="text/javascript"> 
 function checkboxhandler(checkbox) {
   if (checkbox.checked) {
       alert ('checked');
   } else {
       alert ('unchecked');
   }
 } 
 </SCRIPT>

 <i
[...more...]