|| Thema: Linksammlung || Titel: Links - alle gängigen Browser ||
|| Beitrag erstellt von: develop am 16. Oktober ||



|| Thema: JavaScript || Titel: JavaScript - Reload Page ||
|| Beitrag erstellt von: develop am 30. September ||

JavaScript - Reload Page
We want to load content when a user clicks on the "Load Content" button. So we need to bind a click event to that button first and make AJAX request only after it is fired.

$("btnLoad").click(function(){
// Make AJAX call
$("content").load("http://example.com");
});

The above code loads contents from http://example.com into the
. While the page is being loaded we want to display our animated GIF image in the "content". So we could further improve our code like so:

$("btnLoad").click(function(){

// Put an animated GIF image insight of content
$("content").empty().html('');

// Make AJAX call
$("content").load("http://example.com");
});

The .load() function would replace our loading image indicator with the loaded content.

http://jquery-howto.blogspot.com/2009/04/display-loading-gif-image-while-loading.html




|| Thema: HTML || Titel: HTML - Alternative Seite während des Ladevorgangs ||
|| Beitrag erstellt von: develop am 30. September ||

HTML - Alternative Seite während des Ladevorgangs
index.html
----------
<***html>
<***head>
<***title>Seite wird geladen...<***/title>
<***/head>
<***frameset rows="*,0" frameborder="0" framespacing="0" border="0">
<***frame src="loading.html" noresize>
<***frame src="load.html" noresize>
<***noframes>
<***a href="load.html" target="_top">Weiter
<***/noframes>
<***/frameset>
<***/html>

loading.html
------------
<***html>
<***head>
<***title>Ladebildschirm<***/title>
<***/head>
<***body>
<***h1>Seite wird geladen...<***/h1>
<***a href="load.html" target="_top">Ladevorgang überspringen<***/a>
<***/body>
<***/html>

load.html
---------
<***html>
<***head>
<***title>Zu ladende Seite<***/title>
<***/head>
<***body onload="if(top.location.href != self.location.href){top.location.href = self.location.href}">
<***div align="center">
<***h1>Zu ladende Seite<***/h1>
<***img src="http://selfhtml.teamone.de/grafik/anzeige/fotos/foto3.jpg" alt="">
<***hr>
<***img src="http://selfhtml.teamone.de/grafik/anzeige/fotos/foto4.jpg" alt="">
<***/div>
<***/body>
<***/html>


Im sichtbaren Frame der index.html wird die Seite (loading.html) mit dem Text "Seite wird geladen" angezeigt, während im unsichtbaren Frame die Seite (load.html) geladen wird. Sobald die zu ladende Seite geladen wurde, wird sie angezeigt.

Quelle:
http://forum.de.selfhtml.org/archiv/2002/3/t8197/




|| Thema: Php || Titel: PHP - Fortschrittsbalken ||
|| Beitrag erstellt von: develop am 30. September ||



|| Thema: HTML || Titel: HTML - Grafik während Bilder laden ||
|| Beitrag erstellt von: develop am 30. September ||

HTML - Grafik während Bilder laden
Low Src zeigt Bild2 an bis Bild1 geladen ist.

<***img src="http://www.deineurl.de/img/Bild1.jpg" width="20" height="20" lowsrc="http://www.deineurl.de/img/Bild2.jpg">




|| Thema: Php || Titel: PHP - Url optimieren ||
|| Beitrag erstellt von: develop am 30. September ||

PHP - Url optimieren
aus www.domain.de/datei.php?a=1&b=2

wird www.domain.de/datei/1/2/

.htaccess

RewriteEngine on
Options +FollowSymlinks
RewriteBase /

RewriteCond %{REQUEST_URI} datei/(.*)/(.*)/$
RewriteRule datei/(.*)/(.*)/$ /datei.php?a=$1&b=$2

Quelle:
http://www.php-resource.de/forum/showthread/t-46143.html

http://www.modrewrite.de

http://de.selfhtml.org/servercgi/server/rewrite.htm




|| Thema: WPF || Titel: WPF - Grundlagen ||
|| Beitrag erstellt von: dnspatrick am 28. September ||

WPF - Grundlagen
...