<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Johny Hardcore PHP Developer Hamburg and the World - Web Frontend</title>
    <link>http://johny.info/</link>
    <description>Johny, PHP Developer from Hamburg working around whole Europe</description>
    <dc:language>de</dc:language>
    <admin:errorReportsTo rdf:resource="mailto:" />
    <generator>Serendipity 0.8.3 - http://www.s9y.org/</generator>
    
    <image>
        <url>http://johny.info/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Johny Hardcore PHP Developer Hamburg and the World - Web Frontend - Johny, PHP Developer from Hamburg working around whole Europe</title>
        <link>http://johny.info/</link>
        <width>100</width>
        <height>21</height>
    </image>
<item>
    <title>For Each in JavaScript</title>
    <link>http://johny.info/archives/209-For-Each-in-JavaScript.html</link>
<category>Web Frontend</category>    <comments>http://johny.info/archives/209-For-Each-in-JavaScript.html#comments</comments>
    <wfw:comment>http://johny.info/wfwcomment.php?cid=209</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://johny.info/rss.php?version=2.0&amp;type=comments&amp;cid=209</wfw:commentRss>
    <author>johny@johny.info (Johny)</author>
    <content:encoded>
Ich habe ja derzeit das glück ein bischen JavaScript machen zu dürfen so kam ich auch in den genuss eine for each schleife zu benutzen. um ein objekt zu durchlaufen. &lt;br /&gt;
&lt;br /&gt;
Soweit ganz einfach.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;this.values.forEach(function(value,key){&lt;br /&gt;
							if (typeof value != 'function'){&lt;br /&gt;
	 							alert('value');	 								 							&lt;br /&gt;
	 						}&lt;br /&gt;
	 						&lt;br /&gt;
	 						&lt;br /&gt;
	 						&lt;br /&gt;
	 					});&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Bis ich das ganze dann im Internet Explorer ausführen durfte,&lt;br /&gt;
Internet Explorer 5.5. Wohlgemerkt. 5.5 ist alt und das benutzt keiner mehr? Naja im Web mag das stimmen allerdings handelt es sich hier um eine Webapplikation und da wird schön ausschliesslich der IE 5.5 benutzt was zu einem Fehler führt.&lt;br /&gt;
Also kein Fore Each Statement in JavaScript da dieses Erst ab JavaScript 1.7 in Firefox oder Safari oder in nem neuen IE unterstützt wird.&lt;br /&gt;
&lt;br /&gt;
Statdessen soll das for in  statement laufen, aber liefert nur müll zurück.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;for (var value in this.values){&lt;br /&gt;
    alert('value');&lt;br /&gt;
}&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    </content:encoded>
    <pubDate>Tue, 27 May 2008 12:03:46 +0200</pubDate>
    <guid isPermaLink="false">http://johny.info/archives/209-guid.html</guid>
    </item>
<item>
    <title>JavaScripting mit Prototype</title>
    <link>http://johny.info/archives/206-JavaScripting-mit-Prototype.html</link>
<category>Web Frontend</category>    <comments>http://johny.info/archives/206-JavaScripting-mit-Prototype.html#comments</comments>
    <wfw:comment>http://johny.info/wfwcomment.php?cid=206</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://johny.info/rss.php?version=2.0&amp;type=comments&amp;cid=206</wfw:commentRss>
    <author>johny@johny.info (Johny)</author>
    <content:encoded>
&lt;br /&gt;
Da ich zurzeit an der Entwicklung von Webapplicationen arbeite muss ich mich mal wieder ein wenig mehr mit JavaScript beschäftigen. hierbei setze ich derzeit Prototype ein, bietet zum zugriff auf AJAX/JSON, Formen und DOM objekte relativ nützliche Funktionen leider finde ich die Doku auf der &lt;a href=&quot;http://www.prototypejs.org/&quot;&gt;Projektseite&lt;/a&gt; irgendendwie ein bischen dürftig dafür scheint aber  &lt;a href=&quot;http://www.sergiopereira.com/articles/prototype.js.html&quot;&gt; Using Prototype&lt;/a&gt; ganz ordentlich zu sein.    </content:encoded>
    <pubDate>Thu, 08 May 2008 16:02:23 +0200</pubDate>
    <guid isPermaLink="false">http://johny.info/archives/206-guid.html</guid>
    </item>
<item>
    <title>Javascript Onload Extension function</title>
    <link>http://johny.info/archives/202-Javascript-Onload-Extension-function.html</link>
<category>Web Frontend</category>    <comments>http://johny.info/archives/202-Javascript-Onload-Extension-function.html#comments</comments>
    <wfw:comment>http://johny.info/wfwcomment.php?cid=202</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://johny.info/rss.php?version=2.0&amp;type=comments&amp;cid=202</wfw:commentRss>
    <author>johny@johny.info (Johny)</author>
    <content:encoded>
function registerOnLoadFunction(RegisterFunction){&lt;br /&gt;
																				if (typeof window.onload == 'function') {&lt;br /&gt;
  																			 var ExistingOnload=window.onload;&lt;br /&gt;
																				   	window.onload=function(){&lt;br /&gt;
																				   		ExistingOnload();&lt;br /&gt;
  																						RegisterFunction();&lt;br /&gt;
  																					}&lt;br /&gt;
  																			}else{&lt;br /&gt;
  																					window.onload = RegisterFunction;&lt;br /&gt;
  																			  																		&lt;br /&gt;
  																			}    </content:encoded>
    <pubDate>Fri, 18 Apr 2008 10:55:53 +0200</pubDate>
    <guid isPermaLink="false">http://johny.info/archives/202-guid.html</guid>
    </item>
<item>
    <title>Java Script Object Dump</title>
    <link>http://johny.info/archives/136-Java-Script-Object-Dump.html</link>
<category>Web Frontend</category>    <comments>http://johny.info/archives/136-Java-Script-Object-Dump.html#comments</comments>
    <wfw:comment>http://johny.info/wfwcomment.php?cid=136</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://johny.info/rss.php?version=2.0&amp;type=comments&amp;cid=136</wfw:commentRss>
    <author>johny@johny.info (Johny)</author>
    <content:encoded>
 Hab &lt;a href=&quot;http://weblogs.asp.net/skillet/archive/2006/03/23/440940.aspx&quot;&gt;hier&lt;/a&gt; mal ne echt praktische Javascript funktion gefunden nen object dump&lt;br /&gt;
&lt;br /&gt;&lt;a href=&quot;http://johny.info/archives/136-guid.html#extended&quot;&gt;&quot;Java Script Object Dump&quot; vollständig lesen&lt;/a&gt;    </content:encoded>
    <pubDate>Mon, 23 Apr 2007 20:48:49 +0200</pubDate>
    <guid isPermaLink="false">http://johny.info/archives/136-guid.html</guid>
    </item>
</channel>
</rss>
