<?xml version="1.0"?>
<?xml-stylesheet href="/App_Themes/Rss/Rss.xsl" type="text/xsl"?>
<rss version="2.0" xmlns:snippetcenter="http://www.snippetcenter.org/">
<channel>
	<title>snippetcenter.org Snippet-Feed - HTML/JavaScript</title>
	<link>http://www.snippetcenter.org/</link>
	<description>Die neuesten Snippets in  HTML/JavaScript</description>
	<language>de-de</language>
	<copyright>snippetcenter.org</copyright>
	<generator>Hinweis: Dies ist ein RSS-Dokument zum Lesen in deinem RSS-Reader. Klick für mehr Infos.</generator>

	<image>
		<url>http://www.snippetcenter.org/Library/Media/Public/button_88x31.png</url>
		<title>snippetcenter.org</title>
		<link>http://www.snippetcenter.org/</link>
		<width>88</width>
		<height>31</height>
	</image>
	
	<item>
     <title><![CDATA[Das richtige JavaScript POPUP]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/de/das-richtige-javascript-popup-s1942.aspx]]></guid>
     <pubDate>Mon, 12 Mar 2007 20:30:00 GMT</pubDate>
     <description><![CDATA[Ab XHTML 1.1 ist das tag target="_blank" nicht mehr erlaubt, weil der User selbst entscheiden soll, wie sich das Fenster öffnet.

Ein Trick für Webmaster ist JavaScript zu nutzen.

Und es ist egal, ob JavaScript deaktiviert ist oder nicht. Wenn JavaScript deaktiviert ist, öffnet sich das Fenster halt im selben Fenster wie der Aufruf.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/de/das-richtige-javascript-popup-s1942.aspx]]></link>
</item>

<item>
     <title><![CDATA[Small IE/NS6+ mouseover functions]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/de/small-ie-ns6-mouseover-functions-s1843.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[Mouseover functions with preloading and compatibility with IEx+ and NS6+ - Checks for objects so that where it is not compatible it does not produce javascript errors.Compatibility with NS4 or earlier could be acheived easily by using the document.images collection...Only 25 lines of code so it doesn't add much to page size. ]]></description>
     <link><![CDATA[http://www.snippetcenter.org/de/small-ie-ns6-mouseover-functions-s1843.aspx]]></link>
</item>

<item>
     <title><![CDATA[Conversion to Content-Transfer-Encoding Quoted-Printable]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/de/conversion-to-content-transfer-encoding-quoted-printable-s1786.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[This script will convert text to the Quoted-Printable type of Content-Transfer-Encoding that is commonly used for email. See RFC2045: &quot;Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies for the description of this encoding type and others. A copy is at:http://www.ietf.org/rfc/rfc2045.txt?number=2045In particular, See &quot;6.7. Quoted-Printable Content-Transfer-Encoding&quot; in &quot;Chapter 6. Content-Transfer-Encoding Header Field&quot;. Note that the standard supports representation of binary (non-text) data for this encoding type but it is not useful for it; therefore this script assumes the data is text. It is assumed that the end of a line is represented as CrLf, which is the standard for email and is used by Windows operating systems for end of lines.A summary of the algorithm is as follows. Character code numbers 33-60 and 62-126 are not converted and characters 9 and 32 (tab and space) need not be converted unless at the end of a line. All others are encoded by converting to hexadecimal preceded by an equal sign (character code number 61). Characters 33-60 and 62-126 are the exclamation mark through the tilde, excluding the equal sign. Following conversions of characters in that manner, encoded lines must not exceed 76 characters in length. An equal sign can be inserted at the end of a line to continue the line.The characters that are converted can include additional characters, depending on the application. Also the maximum line length can be different from 76 characters in length; the value 76 is used to ensure maximum compatibility. See the standard for details.The following HTML can be used to try the script.&lt;HTML&gt;&lt;HEAD&gt;&lt;META HTTP-EQUIV=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;&lt;TITLE&gt;Quoted-Printable Content-Transfer-Encoding&lt;/TITLE&gt;&lt;/HEAD&gt;&lt;Script Language=JavaScript Src=QuotedPrintableEncoding.js&gt;&lt;/Script&gt;&lt;Script Language=JavaScript&gt;function Encode() {var QPEncoder = new QuotedPrintableEncoder();Output.value = QPEncoder.Encode(Input.value);}&lt;/Script&gt;&lt;BODY&gt;&lt;h1&gt;Quoted-Printable Content-Transfer-Encoding&lt;/h1&gt;&lt;p&gt;&lt;TextArea Name=Input Cols=80 Rows=10&gt;The rain in Spain falls mainly in the plain.023456789 123456789 223456789 323456789 423456789 523456789 623456789 723456789 823456789 923456789 023456789 123456789 223456789 323456789 423456789 523456789&lt;/TextArea&gt;&lt;/p&gt;&lt;p&gt;&lt;Input Type=Button Name=EncodeButton Value=Encode OnClick=&quot;Encode()&quot;&gt;&lt;/Input&gt;&lt;/p&gt;&lt;p&gt;&lt;TextArea Name=Output Cols=80 Rows=10&gt;&lt;/TextArea&gt;&lt;/p&gt;&lt;/BODY&gt;&lt;/HTML&gt;]]></description>
     <link><![CDATA[http://www.snippetcenter.org/de/conversion-to-content-transfer-encoding-quoted-printable-s1786.aspx]]></link>
</item>

<item>
     <title><![CDATA[Deleting a Cookie]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/de/deleting-a-cookie-s1765.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:21:00 GMT</pubDate>
     <description><![CDATA[The browser checks the expire date of the cookie, which we set to &quot;Thu, 01-Jan-70 00:00:01 GMT&quot; by executing the following line:]]></description>
     <link><![CDATA[http://www.snippetcenter.org/de/deleting-a-cookie-s1765.aspx]]></link>
</item>

<item>
     <title><![CDATA[Dynamic Table Filtering/Searching using DHTML and JavaScript]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/de/dynamic-table-filtering-searching-using-dhtml-and-javascript-s1598.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:20:00 GMT</pubDate>
     <description><![CDATA[Easily add table filtering/searching capability to your webpage without requiring a round trip to the server! For a more detailed article (HOWTO), go here (http://www.codeproject.com/jscript/tablefilter.asp)]]></description>
     <link><![CDATA[http://www.snippetcenter.org/de/dynamic-table-filtering-searching-using-dhtml-and-javascript-s1598.aspx]]></link>
</item>

<item>
     <title><![CDATA[IE Client Browser Offline/Online &amp; Dial-up or Faster]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/de/ie-client-browser-offline-online-amp-dial-up-or-faster-s1502.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:20:00 GMT</pubDate>
     <description><![CDATA[Many of us would like to have Scripts or html pages which could be run OFFLINE on the clients PC when they are NOT connected to the internet. This is an example of how to check using some very SIMPLE HTML and JavaScript. Example you may have Gifs which you could reference in a default home page which could now be accessed offline via a directory on the clients system. Very Many possibilites with this. Please Rate this if you can and check out my other submissions here.Inputs:None//// Returns:This example just uses an ALERT BOX when the Browser is offline. you //     can replace that with any logic you wish//     , or just inform the person that they mu//     st be online to use your Page or Script.//     //// Assumes:Not only does this tell you i//     f the Client PC is ONLINE or OFFLINE it //     also tells you if the Client PC is Dial-//     up or High-Speed. This means you could a//     lso use this to determine Download optio//     ns if your visitor is accessing your sit//     e via a Slow speed dial-up line you coul//     d re-direct to pages with less images ju//     st for them so that pages would load fas//     ter for dial-up visitors. Neat huh.No alert was added for this check however you can see that could be done very easily ;-)//// Side Effects:Joy to those of use whom//     needed a way to take a diffenert path su//     ch as getting Gifs, scripts from a direc//     tory on the users hard drive when the us//     er wishes to use our tools or applicatio//     ns offline and the HTML is pointing to a//     WEB Site for scripts of images.//This is a GREAT site to share ideas, code, and suggestions. Any Questions please email me at: Webmaster@Programming-Services.com Thanks Don Kennedy ]]></description>
     <link><![CDATA[http://www.snippetcenter.org/de/ie-client-browser-offline-online-amp-dial-up-or-faster-s1502.aspx]]></link>
</item>

<item>
     <title><![CDATA[Random Number Generator]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/de/random-number-generator-s1456.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:20:00 GMT</pubDate>
     <description><![CDATA[This is the random number generator I'm using for a web-based touch type toutor application.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/de/random-number-generator-s1456.aspx]]></link>
</item>

<item>
     <title><![CDATA[RPN Parser]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/de/rpn-parser-s1419.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:20:00 GMT</pubDate>
     <description><![CDATA[A javascript reverse polish notation (RPN)  parser.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/de/rpn-parser-s1419.aspx]]></link>
</item>

<item>
     <title><![CDATA[Select-a-Date Calendar]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/de/select-a-date-calendar-s1372.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:20:00 GMT</pubDate>
     <description><![CDATA[A popup calendar which allows you to select a date, and enters it into a text field.  Uses JavaScript1.2]]></description>
     <link><![CDATA[http://www.snippetcenter.org/de/select-a-date-calendar-s1372.aspx]]></link>
</item>

<item>
     <title><![CDATA[Linkedlist.js]]></title>
     <guid><![CDATA[http://www.snippetcenter.org/de/linkedlistjs-s1326.aspx]]></guid>
     <pubDate>Mon, 15 May 2006 10:19:00 GMT</pubDate>
     <description><![CDATA[I implemented a linklist which is written by javascript, purpose on minimize the work load on the server side. such like rearrage the order the questions.]]></description>
     <link><![CDATA[http://www.snippetcenter.org/de/linkedlistjs-s1326.aspx]]></link>
</item>



</channel>
</rss>
