This file contains 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
// Folgende zusaetzliche CSS-Eigenschaften muessen ggf. in eine externe CSS-Datei eingefuegt werden: | |
/* SLIMBOX */ | |
#lbOverlay { | |
position: fixed; | |
z-index: 9999; | |
left: 0; | |
top: 0; | |
width: 100%; |
This file contains 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
<?PHP | |
session_start(); | |
$secCode = rand(100000,999999); | |
$_SESSION['antispam_'.$_GET['formid']] = md5($secCode); | |
// get from: http://www.01-scripts.de/01scripts/01pics/sec.jpg | |
$im = imagecreatefromjpeg("sec.jpg"); | |
// get from: http://www.01-scripts.de/01scripts/01pics/verdanab.ttf |
This file contains 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
<script type="text/javascript"> | |
var giframe; | |
var gURL; | |
function periodicResize(iframe){ | |
giframe = iframe; | |
setInterval(resizeIframe, 500); | |
} | |
function resizeIframe() { | |
if(giframe.contentWindow.document.body != null && giframe.contentWindow.document.body.scrollHeight > 0){ | |
if(giframe.contentWindow.document.URL != gURL) |
This file contains 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
// Changing Text with innerHTML | |
// http://www.tizag.com/javascriptT/javascript-innerHTML.php | |
<script type="text/javascript"> | |
function changeText(){ | |
document.getElementById('boldStuff').innerHTML = 'Fred Flinstone'; | |
} | |
</script> | |
<p>Welcome to the site <b id='boldStuff'>dude</b> </p> | |
<input type='button' onclick='changeText()' value='Change Text'/> |
This file contains 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
<!-- Spalten mit gleicher Höhe in CSS --> | |
<div id="wrapper"> | |
<div id="maincontent">...</div> | |
<div id="sidebar">...</div> | |
</div> | |
#wrapper{ | |
margin:0 auto; | |
width:600px; | |
} |
This file contains 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
/** | |
* FancyUpload - Flash meets Ajax for powerful and elegant uploads. | |
* | |
* Updated to latest 3.0 API. Hopefully 100% compat! | |
* | |
* @version 3.0 | |
* | |
* @license MIT License | |
* | |
* @author Harald Kirschner <http://digitarald.de> |
This file contains 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
/* Datei im Verzeichnis 01module/01gallery/templates/javas.js */ | |
/* | |
01-Gallery V2 - Copyright 2003-2009 by Michael Lorer - 01-Scripts.de | |
Lizenz: Creative-Commons: Namensnennung-Keine kommerzielle Nutzung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland | |
Weitere Lizenzinformationen unter: http://www.01-scripts.de/lizenz.php | |
Modul: 01gallery | |
Dateiinfo: Frontend-BB-Code-JavaScript-Funktion | |
*/ |
This file contains 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
/* | |
01-Artikelsystem V3 - Copyright 2006-2008 by Michael Lorer - 01-Scripts.de | |
Lizenz: Creative-Commons: Namensnennung-Keine kommerzielle Nutzung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland | |
Weitere Lizenzinformationen unter: http://www.01-scripts.de/lizenz.php | |
Modul: 01article | |
Dateiinfo: JavaScript-Funktionen | |
*/ | |
This file contains 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
/* | |
01-Gästebuch - Copyright 2009 by Michael Lorer - 01-Scripts.de | |
Lizenz: Creative-Commons: Namensnennung-Keine kommerzielle Nutzung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland | |
Weitere Lizenzinformationen unter: http://www.01-scripts.de/lizenz.php | |
Modul: 01gbook | |
Dateiinfo: Frontend-JavaScript-Funktion | |
*/ | |
This file contains 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
/* | |
01-Newsletter - Copyright 2009-2011 by Michael Lorer - 01-Scripts.de | |
Lizenz: Creative-Commons: Namensnennung-Keine kommerzielle Nutzung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland | |
Weitere Lizenzinformationen unter: http://www.01-scripts.de/lizenz.php | |
Modul: 01newsletter | |
Dateiinfo: JavaScript-Funktionen | |
#fv.1100# | |
*/ |
OlderNewer