<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Alexander Zerr &#187; jQuery</title>
	<atom:link href="http://www.xelaz.de/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xelaz.de</link>
	<description>Meine Erfahrungen in der Web Entwicklung</description>
	<lastBuildDate>Mon, 26 Sep 2011 18:30:56 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Elastische Textareas mit jQuery</title>
		<link>http://www.xelaz.de/elastische-textareas-mit-jquery/</link>
		<comments>http://www.xelaz.de/elastische-textareas-mit-jquery/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 10:27:34 +0000</pubDate>
		<dc:creator>Alexander Zerr</dc:creator>
				<category><![CDATA[Tipps]]></category>
		<category><![CDATA[Dynamisch]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Textarea]]></category>

		<guid isPermaLink="false">http://www.xelaz.de/?p=314</guid>
		<description><![CDATA[Ich wollte dynamische Textarea haben wie sie in Facebook gibt. So habe ich im Netz nach Lösungen gesucht und bin über mehrere Lösungen/Plugins gestolpert wie hier, hier oder hier, es gibt noch mehr. 
Alle diese Lösungen waren mir zu Groß und zu Komplex. Ich möchte nicht noch ein jQuery im jQuery haben, sondern Kurz und [...]]]></description>
			<content:encoded><![CDATA[<p>Ich wollte dynamische Textarea haben wie sie in Facebook gibt. So habe ich im Netz nach Lösungen gesucht und bin über mehrere Lösungen/Plugins gestolpert wie <a href="http://fer-menta.blogspot.com/2010/12/jquery-expanding-textarea.html" target="_blank">hier</a>, <a href="http://blogs.sitepoint.com/2009/07/30/build-auto-expanding-textarea-3/" target="_blank">hier</a> oder <a href="http://www.unwrongest.com/projects/elastic/" target="_blank">hier</a>, es gibt noch mehr. </p>
<p>Alle diese Lösungen waren mir zu Groß und zu Komplex. Ich möchte nicht noch ein jQuery im jQuery haben, sondern Kurz und Schmerzlos. Dazu waren ein paar Ansätze nicht so Flexibel, da sie die Größe des Textarea an den Umbrüchen des Inhalts bestimmen und das muss wiederum mit ein paar Wrapper CSS Methoden gefixt werden, was wiederum viel eingriff in den Quelltext des Projekts bedeutet. </p>
<p>Die ganzen Unzufriedenheiten haben mich dazu veranlasst selber zu experimentieren. Und nach kurzer Zeit fand ich eine EinfachGenialeLösung so wie eine Axt, sie hat nur ein Beil und Keil das wars!</p>
<p>Mein Ansatz braucht etwas CSS und nur maximal 400Bytes kleinen jQuery Plugin.</p>

<div class="wp_syntax"><div class="code"><pre class="css">textarea<span style="color: #6666ff;">.input</span> <span style="color: #66cc66;">&#123;</span>
    	width<span style="color: #3333ff;">:<span style="color: #933;">500px</span></span><span style="color: #66cc66;">;</span> 
    	line-height<span style="color: #3333ff;">:<span style="color: #933;">16px</span></span><span style="color: #66cc66;">;</span> 
    	height<span style="color: #3333ff;">:<span style="color: #933;">16px</span></span><span style="color: #66cc66;">;</span> 
<span style="color: #66cc66;">&#125;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre>&lt;textarea class=&quot;input&quot; name=&quot;name&quot;&gt;Dynamischer Inhalt&lt;/textarea&gt;</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="javascript">jQuery.<span style="color: #006600;">fn</span>.<span style="color: #006600;">elasticArea</span> = <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
  <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #006600;">each</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">function</span> resizeTextarea<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
      <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #006600;">style</span>.<span style="color: #006600;">height</span> = <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #006600;">scrollHeight</span><span style="color: #66cc66;">/</span><span style="color: #CC0000;">2</span> + <span style="color: #3366CC;">'px'</span>;
      <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #006600;">style</span>.<span style="color: #006600;">height</span> = <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #006600;">scrollHeight</span> + <span style="color: #3366CC;">'px'</span>;
    <span style="color: #66cc66;">&#125;</span>
    $<span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">keypress</span><span style="color: #66cc66;">&#40;</span>resizeTextarea<span style="color: #66cc66;">&#41;</span>
    .<span style="color: #006600;">keydown</span><span style="color: #66cc66;">&#40;</span>resizeTextarea<span style="color: #66cc66;">&#41;</span>
    .<span style="color: #006600;">keyup</span><span style="color: #66cc66;">&#40;</span>resizeTextarea<span style="color: #66cc66;">&#41;</span>
    .<span style="color: #006600;">css</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'overflow'</span>,<span style="color: #3366CC;">'hidden'</span><span style="color: #66cc66;">&#41;</span>;
    resizeTextarea.<span style="color: #006600;">call</span><span style="color: #66cc66;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #66cc66;">&#41;</span>;
  <span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span>;
&nbsp;
$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'textarea.input'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">elasticArea</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>Dieser Ansatz funktioniert mit der Eigenschaft scrollHeight. Sie ist sehr Präzise und gibt genau die maximale Höhe der Textarea mit Inhalt. So nehme ich sie, Teile durch die Hälfte und setze sie der Textarea als Höhe ein. Danach wird sie wieder als Textarea Höhe gesetzt. Das macht die Textarea dynamisch in beide Richtungen wenn neuer Text eingefügt oder gelöscht wird und es passiert so schnell, dass man nichts davon mitkriegt.</p>
<p>Das ganze ist Dynamisch und wurde miniklein gehalten. So kann jeder selbst den Code nach seinen Wünschen erweitern falls er noch maximale Höhe haben möchte, die Höhe per Parameter übergeben ohne die CSS an zufassen oder sonstige Schnickschnacks.</p>
<p>Getestet hab ich in gängigen Browsern. Kann sein das irgend wo noch was hängt, aber alle von mir getesteten neue Browser haben es ohne Probleme geschluckt.</p>
<p>Eingesetzt können diese Elastischen Textareas als Input Felder. Weil ohne Inhalt sind sie so groß wie Inputs und können dynamisch mit dem Inhalt wachsen.</p>
<p>Hier ist noch eine <a href="/wp-content/uploads/2011/03/textarea.html">Live Demo</a>.</p>
<p>Das wars und mehr brauche ich nicht.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xelaz.de/elastische-textareas-mit-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CKEditor onChange Event</title>
		<link>http://www.xelaz.de/ckeditor-onchange-event/</link>
		<comments>http://www.xelaz.de/ckeditor-onchange-event/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 21:14:26 +0000</pubDate>
		<dc:creator>Alexander Zerr</dc:creator>
				<category><![CDATA[Tipps]]></category>
		<category><![CDATA[CKEditor]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[onChange]]></category>

		<guid isPermaLink="false">http://www.xelaz.de/?p=299</guid>
		<description><![CDATA[Vor ein paar Wochen habe ich lange nach einer Lösung gesucht und aufgegeben, weil auch die CKEditor Event Seite war mir nicht genug. Heute hab ich es nochmal probiert und fand hier die Lösung:

var ckeditorInstance = CKEDITOR.replace&#40;&#34;mytextarea&#34;&#41;;
&#160;
ckeditorInstance.on&#40;&#34;instanceReady&#34;, function&#40;&#41;
&#123;
	this.document.on&#40;&#34;keyup&#34;, CKCHANGED&#41;;
	this.document.on&#40;&#34;paste&#34;, CKCHANGED&#41;;
&#125;
&#41;;
function CKCHANGED&#40;&#41; &#123; 
	formchanged = 1;
&#125;

Gebraucht wird die Lösung um zu erkennen ob der User den [...]]]></description>
			<content:encoded><![CDATA[<p>Vor ein paar Wochen habe ich lange nach einer Lösung gesucht und aufgegeben, weil auch die <a target="_blank" href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.event.html">CKEditor Event</a> Seite war mir nicht genug. Heute hab ich es nochmal probiert und fand <a target="_blank" href="http://de.w3support.net/index.php?db=so&#038;id=924145">hier</a> die Lösung:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript"><span style="color: #003366; font-weight: bold;">var</span> ckeditorInstance = CKEDITOR.<span style="color: #006600;">replace</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;mytextarea&quot;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
ckeditorInstance.<span style="color: #006600;">on</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;instanceReady&quot;</span>, <span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
	<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #006600;">document</span>.<span style="color: #006600;">on</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;keyup&quot;</span>, CKCHANGED<span style="color: #66cc66;">&#41;</span>;
	<span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #006600;">document</span>.<span style="color: #006600;">on</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">&quot;paste&quot;</span>, CKCHANGED<span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#41;</span>;
<span style="color: #003366; font-weight: bold;">function</span> CKCHANGED<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span> 
	formchanged = <span style="color: #CC0000;">1</span>;
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>Gebraucht wird die Lösung um zu erkennen ob der User den Inhalt im CKEditor Textarea geändert hat und ihn beim verlassen der Seite zu warnen, dass er sein Code verändert hat ohne gespeichert zu haben. (Ich benutze es mit jQuery)</p>

<div class="wp_syntax"><div class="code"><pre class="javascript">&nbsp;
<span style="color: #003366; font-weight: bold;">var</span> formchanged = <span style="color: #CC0000;">0</span>;
<span style="color: #003366; font-weight: bold;">var</span> submitted = <span style="color: #CC0000;">0</span>;
&nbsp;
$<span style="color: #66cc66;">&#40;</span>document<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">ready</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
	$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'form'</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">each</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span>i,n<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
		$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'input'</span>, n<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">change</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>formchanged = <span style="color: #CC0000;">1</span><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
		$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'textarea'</span>, n<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">change</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>formchanged = <span style="color: #CC0000;">1</span><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
		$<span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">'select'</span>, n<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">change</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>formchanged = <span style="color: #CC0000;">1</span><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>; 
		$<span style="color: #66cc66;">&#40;</span>n<span style="color: #66cc66;">&#41;</span>.<span style="color: #006600;">submit</span><span style="color: #66cc66;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>submitted=<span style="color: #CC0000;">1</span><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
window.<span style="color: #006600;">onbeforeunload</span> = confirmExit;
<span style="color: #003366; font-weight: bold;">function</span> confirmExit<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
	<span style="color: #000066; font-weight: bold;">if</span><span style="color: #66cc66;">&#40;</span>formchanged == <span style="color: #CC0000;">1</span> <span style="color: #66cc66;">&amp;&amp;</span> submitted == <span style="color: #CC0000;">0</span><span style="color: #66cc66;">&#41;</span>
		<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #3366CC;">&quot;Sie verlassen die Seite ohne gespeichern zu haben.&quot;</span>;
	<span style="color: #000066; font-weight: bold;">else</span> 
		<span style="color: #000066; font-weight: bold;">return</span>;
<span style="color: #66cc66;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.xelaz.de/ckeditor-onchange-event/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25 jQuery Tipps</title>
		<link>http://www.xelaz.de/25-jquery-tipps/</link>
		<comments>http://www.xelaz.de/25-jquery-tipps/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 17:58:51 +0000</pubDate>
		<dc:creator>Alexander Zerr</dc:creator>
				<category><![CDATA[Meine Links]]></category>
		<category><![CDATA[Tipps]]></category>
		<category><![CDATA[jYoup]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.xelaz.de/?p=55</guid>
		<description><![CDATA[Heute hab ich ein Tipp vom Freund bekommen über 25 jQuery Tipps. Sofort angeschaut und war begeistert über alle diese Tipps, da sie richtig gut sind.
Der Beste der mir gefallen hat, dass man jQuery nicht mehr von eigenem Server laden kann sondern man lässt den jQuery Script von dem Google Server laden.
Ich hab auch schon [...]]]></description>
			<content:encoded><![CDATA[<p>Heute hab ich ein Tipp vom Freund bekommen über 25 jQuery Tipps. Sofort angeschaut und war begeistert über alle diese Tipps, da sie richtig gut sind.<br />
Der Beste der mir gefallen hat, dass man jQuery nicht mehr von eigenem Server laden kann sondern man lässt den jQuery Script von dem Google Server laden.<br />
Ich hab auch schon Google für mich genutzt für den jYoup Player nur bei jQuery kannte ich nicht den Pfad.<br />
Die Vorteile sind, dass man den Traffic spart und auch dem User spart man die Zeit, falls er schon jQuery von Google gecached hat. Da Google 99% online ist, braucht man auch keine Angst darüber haben das der Script mal nicht da ist.</p>
<p>Hier ist ein Beispiel:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript"><span style="color: #66cc66;">&lt;</span>script src=<span style="color: #3366CC;">&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js&quot;</span> type=<span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #66cc66;">&gt;&lt;/</span>script<span style="color: #66cc66;">&gt;</span></pre></div></div>

<p>Und hier sind die besten Tipps für jQuery: <a href="http://www.tvidesign.co.uk/blog/improve-your-jquery-25-excellent-tips.aspx" target="_blank"><strong>25 excellent tips</strong></a></p>
<p><div style="margin:10px auto;width:360px;"><iframe src="http://rcm-de.amazon.de/e/cm?t=vfgibo-21&amp;asins=3836212889&amp;fc1=ff0000&amp;lc1=00749E&amp;bc1=ffffff&amp;bg1=ffffff&amp;lt1=_blank&amp;is2=1&amp;o=3&amp;p=8&amp;l=as1&amp;f=ifr&amp;" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><iframe src="http://rcm-de.amazon.de/e/cm?t=vfgibo-21&amp;asins=3836211319&amp;fc1=ff0000&amp;lc1=00749E&amp;bc1=ffffff&amp;bg1=ffffff&amp;lt1=_blank&amp;is2=1&amp;o=3&amp;p=8&amp;l=as1&amp;f=ifr&amp;" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><iframe src="http://rcm-de.amazon.de/e/cm?t=vfgibo-21&amp;asins=047038459X&amp;fc1=ff0000&amp;lc1=00749E&amp;bc1=ffffff&amp;bg1=ffffff&amp;lt1=_blank&amp;is2=1&amp;o=3&amp;p=8&amp;l=as1&amp;f=ifr&amp;" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xelaz.de/25-jquery-tipps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery Plugins</title>
		<link>http://www.xelaz.de/jquery-plugins/</link>
		<comments>http://www.xelaz.de/jquery-plugins/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 09:24:01 +0000</pubDate>
		<dc:creator>Alexander Zerr</dc:creator>
				<category><![CDATA[Meine Links]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.xelaz.de/?p=33</guid>
		<description><![CDATA[Da hat sich jemand eine Große Arbeit geleistet die vielen Plugins zu sammeln.
Eine sehr große Sammlung an guten Perlen.
http://www.sastgroup.com/jquery/240-plugins-jquery
]]></description>
			<content:encoded><![CDATA[<p>Da hat sich jemand eine Große Arbeit geleistet die vielen Plugins zu sammeln.<br />
Eine sehr große Sammlung an guten Perlen.</p>
<p><strong><a href="http://www.sastgroup.com/jquery/240-plugins-jquery" target="_blank">http://www.sastgroup.com/jquery/240-plugins-jquery</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xelaz.de/jquery-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dezentes JavaScript mit jQuery</title>
		<link>http://www.xelaz.de/dezentes-javascript-mit-jquery/</link>
		<comments>http://www.xelaz.de/dezentes-javascript-mit-jquery/#comments</comments>
		<pubDate>Wed, 14 May 2008 19:01:54 +0000</pubDate>
		<dc:creator>Alexander Zerr</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Slides]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.xelaz.de/?p=26</guid>
		<description><![CDATA[Wenn man in JavaScript versucht mit wenig Code den grössten Erfolg zu erzielen, kommt man immer wieder in eine Routine rein die den Code mit JavaScript Methoden aufbläht. Um das zu vermeiden, kann man jQuery nutzen. Schon hat man an eigenem Code sehr viel gespart und das Ergebnis lässt sich sehen.
Simon Willison hat das in [...]]]></description>
			<content:encoded><![CDATA[<p>Wenn man in JavaScript versucht mit wenig Code den grössten Erfolg zu erzielen, kommt man immer wieder in eine Routine rein die den Code mit JavaScript Methoden aufbläht. Um das zu vermeiden, kann man jQuery nutzen. Schon hat man an eigenem Code sehr viel gespart und das Ergebnis lässt sich sehen.</p>
<p>Simon Willison hat das in eine Präsentation gepackt + die Beispiele auf seiner <a href="http://simonwillison.net/static/2008/xtech/"><strong>Seite</strong></a> abgelegt.<br />
Es sind sehr schöne Beispiele entstanden die mir gefallen haben und auch die Präsentation ist informativ geworden. Für jQuery Lehrlinge zu empfehlen.</p>
<p></p>
<div id="__ss_390708" style="margin:auto; width:425px;text-align:left"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=unobtrusivejquery-1210086958470711-9" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slideshare.net/swf/ssplayer2.swf?doc=unobtrusivejquery-1210086958470711-9" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"><a href="http://www.slideshare.net/?src=embed"><img style="border:0px none;margin-bottom:-5px" src="http://static.slideshare.net/swf/logo_embd.png" alt="SlideShare" /></a> | <a title="View this slideshow on SlideShare" href="http://www.slideshare.net/simon/unobtrusive-javascript-with-jquery">View</a> | <a href="http://www.slideshare.net/upload">Upload your own</a></div>
</div>
<p><img style="visibility:hidden;width:0px;height:0px;" src="http://counters.gigya.com/wildfire/CIMP/bT*xJmx*PTEyMTA3OTAxMjYzMDMmcHQ9MTIxMDc5MDEzMDk1MCZwPTEwMTkxJmQ9Jm49Jmc9Mg==.jpg" border="0" alt="" width="0" height="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xelaz.de/dezentes-javascript-mit-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

