wcf.regNote.message
|
|
Source code |
1 2 3 4 |
<script type="text/javascript"> breite=document.body.offsetWidth höhe=document.body.offsetHeight </script> |
|
|
Source code |
1 |
<div style="background-image:url(pics/starthg.jpg); background-repeat:repeat; position:absolute; top:257px; left:1px; width:100%; height:JS VAR höhe; z-index:3"> |
|
|
Source code |
1 2 3 4 |
var div = document.getElementById("DIV_ID");
if(div) {
div.style.height = document.body.offsetHeight - 256;
}
|



|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 |
echo '</body>';
echo '<script type="text/javascript">';
echo '<!--';
echo ' var div = document.getElementById("haupthintergrund");';
echo ' if(div) {';
echo ' div.style.height = document.body.offsetHeight - 25;';
echo ' div.style.width = document.body.offsetWidth - 1;';
echo ' }';
echo '-->';
echo '</script>';
echo '</html>';
|
|
|
Source code |
1 2 3 4 5 6 7 |
echo "<!--\n";
echo "var div = document.getElementById("haupthintergrund");\n";
echo "if(div) {\n";
echo "div.style.height = document.body.offsetHeight - 25;\n";
echo "div.style.width = document.body.offsetWidth - 1;\n";
echo "}\n";
echo "-->\n";
|

|
|
Source code |
1 2 3 4 5 6 7 |
var Height = parseInt(document.body.offsetHeight);
var Width = parseInt(document.body.offsetWidth);
if(navigator.appName.match(/Firefox/gi) != -1 || navigator.appName.match(/Opera/gi) != -1) {
Height = parseInt(window.innerHeight);
Width = parseInt(window.innerWidth);
}
|






|
|
Source code |
1 2 |
if (Weite != Fensterweite() || Hoehe != Fensterhoehe())
window.history.go(0);
|

|
|
Source code |
1 |
if (!window.Weite && document.body && document.body.offsetWidth) {
|
|
|
Source code |
1 |
if (!window.Weite && document.body && document.body.offsetWidth) {
|
