<?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>mysrc.de &#187; Stefan Huissel</title> <atom:link href="http://www.mysrc.de/author/stefanhuissel/feed/" rel="self" type="application/rss+xml" /><link>http://www.mysrc.de</link> <description>- jQuery, MooTools, HTML5, AJAX</description> <lastBuildDate>Tue, 14 Jun 2011 08:24:25 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>jQuery Mobile &#8211; Der Seitenaufbau</title><link>http://www.mysrc.de/html5/jquery-mobile-der-eitenaufbau/</link> <comments>http://www.mysrc.de/html5/jquery-mobile-der-eitenaufbau/#comments</comments> <pubDate>Wed, 01 Dec 2010 20:03:17 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[HTML5]]></category> <category><![CDATA[jQuery Mobile]]></category> <category><![CDATA[jQuery]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=1165</guid> <description><![CDATA[Bevor man damit beginnt seine ersten mobile Websites zu bauen, gibt es einige grundlegende Punkte die Struktur betreffend zu wissen. Zunächst einmal arbeiten wir unter dem HTML5 Doctype. Was in mobilen Endgeräten glücklicherweise kein Problem ist, da diese HTML5 in sogut wie allen Fällen verstehen. Der HTML Head mit den für jQuery Mobile notwendigen JS-Skripten, [...]]]></description> <content:encoded><![CDATA[<p>Bevor man damit beginnt seine ersten mobile Websites zu bauen, gibt es einige grundlegende Punkte die Struktur betreffend zu wissen.<br
/> Zunächst einmal arbeiten wir unter dem HTML5 Doctype. Was in mobilen Endgeräten glücklicherweise kein Problem ist, da diese HTML5 in sogut wie allen Fällen verstehen.</p><p>Der HTML Head mit den für jQuery Mobile notwendigen JS-Skripten, sieht nun wie folgt aus:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1165code3'); return false;">View Code</a> HTML</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p11653"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td
class="code" id="p1165code3"><pre class="html" style="font-family:monospace;">&lt;!DOCTYPE html&gt;
&lt;html&gt;
	&lt;head&gt;
	&lt;title&gt;Meine mobile Website&lt;/title&gt;
	&lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css&quot; /&gt;
	&lt;script src=&quot;http://code.jquery.com/jquery-1.4.4.min.js&quot;&gt;&lt;/script&gt;
	&lt;script src=&quot;http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;</pre></td></tr></table></div><p>Für das Framework benötigen wir im HTML Teil nun ein spezielles Attribut mit der Bezeichnung &#8220;data-role&#8221;, das den allgemein Aufbau der Seite definiert.</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1165code4'); return false;">View Code</a> HTML</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p11654"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td
class="code" id="p1165code4"><pre class="html" style="font-family:monospace;">&lt;div data-role=&quot;page&quot;&gt;
&lt;body&gt;
&nbsp;
&lt;div data-role=&quot;page&quot;&gt;
&nbsp;
	&lt;div data-role=&quot;header&quot;&gt;
		&lt;h1&gt;Meine mobile Website&lt;/h1&gt;
	&lt;/div&gt;
&nbsp;
	&lt;div data-role=&quot;content&quot;&gt;
		&lt;p&gt;Hier der normale Seiteninhalt..&lt;/p&gt;
	&lt;/div&gt;
&nbsp;
	&lt;div data-role=&quot;footer&quot;&gt;
		&lt;p&gt;Allgemeine Seiteninfo&lt;/p&gt;
	&lt;/div&gt;
&lt;/div&gt;
&nbsp;
&lt;/body&gt;
&lt;/html&gt;
&lt;/div&gt;</pre></td></tr></table></div><p>Der notwendigen Attributausprägungen sind hierbei <strong>page, header, content und footer</strong>. Jedes einzelne dieser Divs ist frei mit normalen HTML Tags befüllbar.</p><p>Damit haben wir nun schon unsere erste statische Seite. Obwohl wir ein Javascript Framework benutzen, brauche wir bisher dafür noch kein Javascript. Alle notwendigen Schritte laufen im Hintergrund ab.</p><p>Im nächsten Teil widmen wir uns dann der Verlinkung mittels Ajax und dem Wechsel zwischen verschiedenen Seiten..</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>25. November 2010 -- <a
href="http://www.mysrc.de/jquery/jquery-mobile-web-apps-mit-jquery/" title="jQuery Mobile &#8211; Web-Apps mit jQuery">jQuery Mobile &#8211; Web-Apps mit jQuery</a></li><li>19. November 2010 -- <a
href="http://www.mysrc.de/jquery/praxistipp-suchfeld-leeren-on-focus-jquery/" title="Praxistipp: Suchfeld leeren on focus (jQuery)">Praxistipp: Suchfeld leeren on focus (jQuery)</a></li><li>14. November 2010 -- <a
href="http://www.mysrc.de/jquery/fadetoggle-die-neue-in-jquery-1-4-4/" title="fadeToggle &#8211; die Neue in jQuery 1.4.4">fadeToggle &#8211; die Neue in jQuery 1.4.4</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/html5/jquery-mobile-der-eitenaufbau/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>fadeToggle &#8211; die Neue in jQuery 1.4.4</title><link>http://www.mysrc.de/jquery/fadetoggle-die-neue-in-jquery-1-4-4/</link> <comments>http://www.mysrc.de/jquery/fadetoggle-die-neue-in-jquery-1-4-4/#comments</comments> <pubDate>Sun, 14 Nov 2010 12:18:45 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[jQuery]]></category> <category><![CDATA[event-handler]]></category> <category><![CDATA[Selektoren]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=1126</guid> <description><![CDATA[Diese Woche ist jQuery in einem neuen Release erschienen. Neben einigen Bugfixes und kleinen Ändererungen gibt es auch die neue Funktion &#8220;fadeToogle&#8221;. Sie funktioniert vom Prinzip her genauso wie &#8220;toggleClass&#8221; und &#8220;slideToogle&#8221; und dient, wie die anderen, dazu möglichst einfach zwischen verschiedenen Zuständen zu wechseln. Wir wollen das an zwei Beispielen verdeutlichen. Werfen wir vorher [...]]]></description> <content:encoded><![CDATA[<p>Diese Woche ist jQuery in einem neuen <a
href="http://blog.jquery.com/">Release</a> erschienen. Neben einigen Bugfixes und kleinen Ändererungen gibt es auch die neue Funktion <strong>&#8220;fadeToogle&#8221;</strong>. Sie funktioniert vom Prinzip her genauso wie &#8220;toggleClass&#8221; und &#8220;slideToogle&#8221; und dient, wie die anderen, dazu möglichst <strong>einfach zwischen verschiedenen Zuständen zu wechseln</strong>. Wir wollen das an zwei Beispielen verdeutlichen.</p><p>Werfen wir vorher einen Blick auf die Signatur der neuen Methode:<br
/> <strong>.fadeToggle( [ duration ], [ easing ], [ callback ] )</strong></p><p><strong>Duration</strong> ist die Zeit in der das Fading ausgeführt wird<br
/> <strong>Easing</strong> ist die Art des Effektes, wobei es standardmäßig hier keine relevanten Änderungsoptionen gibt<br
/> <strong>Eine Callback Funktion</strong> um nach der Animation beliebigen Code auszuführen.</p><p>Der Javascript Code sieht nun wie folgt aus:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1126code6'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p11266"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
</pre></td><td
class="code" id="p1126code6"><pre class="javascript" style="font-family:monospace;">    <span style="color: #006600; font-style: italic;">// Variable um aktuellen Sichtbarkeitsstatus zu speichern</span>
    <span style="color: #003366; font-weight: bold;">var</span> toogleState <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;visible&quot;</span>
&nbsp;
    $<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #006600; font-style: italic;">//Beispiel 1</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;button:first&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
          $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;div#fadingBox&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">fadeToggle</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;slow&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;linear&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #006600; font-style: italic;">//Beispiel 2</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;button:last&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
          $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;p:first&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">fadeToggle</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;fast&quot;</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
            <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>toogleState <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;visible&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
                $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;button:last&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">text</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;zeigen&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                toogleState <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;invisible&quot;</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span>
            <span style="color: #000066; font-weight: bold;">else</span><span style="color: #009900;">&#123;</span>
                $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;button:last&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">text</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;verstecken&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                toogleState <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;visible&quot;</span><span style="color: #339933;">;</span>
            <span style="color: #009900;">&#125;</span>
&nbsp;
          <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p><strong>Das erste Beispiel</strong> ist ein Box die einfach aus- und wieder eingeblendet wird. Ohne, dass der aktuelle Anzeigestatus sichtbar oder abrufbar wäre.</p><p><strong>Das zweite Beispiel</strong> zeigt einen einfachen Workaround, um mit dem aktuellen Anzeigemodus zu arbeiten. Also ist das Element gerade sichtbar oder nicht. Die hier vorgestellte Variante ist einfacherer Natur. Es wäre natürlich auch möglich, direkt den Sichtbarkeitsstatus des Objektes selbst abzufragen und entsprechend zu reagieren. Die vorgestellte Möglichkeit wurde wegen der besseren Nachvollziehbarkeit so gewählt. Allerdings wäre sie für größere Projekte wegen einer schlechteren Wartbarkeit weniger zu empfehlen.</p><p>Eine Demo dazu findet ihr <a
href="http://www.mysrc.de/demo/fadetoogle/">hier</a>.<br
/> Weder das CSS noch das JS sind ausgelagert, also einfach rechte Maustaste und Quelltext anzeigen lassen.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>26. November 2009 -- <a
href="http://www.mysrc.de/allgemein/jquery-howto-traversing/" title="jQuery HowTo: Traversing">jQuery HowTo: Traversing</a></li><li>13. März 2009 -- <a
href="http://www.mysrc.de/jquery/selektoren-in-jquery/" title="Selektoren in jQuery">Selektoren in jQuery</a></li><li>1. Dezember 2010 -- <a
href="http://www.mysrc.de/html5/jquery-mobile-der-eitenaufbau/" title="jQuery Mobile &#8211; Der Seitenaufbau">jQuery Mobile &#8211; Der Seitenaufbau</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/fadetoggle-die-neue-in-jquery-1-4-4/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Typeface mit font-weight:bold</title><link>http://www.mysrc.de/javascript/typeface-mit-font-weightbold/</link> <comments>http://www.mysrc.de/javascript/typeface-mit-font-weightbold/#comments</comments> <pubDate>Fri, 30 Jul 2010 20:17:10 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[Javascript]]></category> <category><![CDATA[CSS3]]></category> <category><![CDATA[sIFR]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=1100</guid> <description><![CDATA[Als Webentwickler kennt man das Problem mit kommerziellen Schriftarten, die aus dem Corporate Design stammen, aber nicht als Webfont zur Verfügung stehen. Beliebt sind dafür immer verschiedenste Formen des Image-Replacements. Die Nachteile davon liegen auf der Hand: Keine optimale Suchmaschinerkennung Hoher Änderungs- und Verwaltungsaufwand Text nicht kopierbar Problem der Barrierefreiheit Neben der Bilderlösung dürfte sIFR [...]]]></description> <content:encoded><![CDATA[<p>Als Webentwickler kennt man das Problem mit kommerziellen Schriftarten, die aus dem Corporate Design stammen, aber nicht als Webfont zur Verfügung stehen. Beliebt sind dafür immer verschiedenste Formen des <strong>Image-Replacements</strong>. Die Nachteile davon liegen auf der Hand:</p><ul><li>Keine optimale Suchmaschinerkennung</li><li>Hoher Änderungs- und Verwaltungsaufwand</li><li>Text nicht kopierbar</li><li>Problem der Barrierefreiheit</li></ul><p>Neben der Bilderlösung dürfte <a
href="http://wiki.novemberborn.net/blog/sifr">sIFR</a> eine bekannte Methode sein. Hier wird der Text aus einem bestimmten HTML-Tag gelesen und durch einen Flashfilm mit eingebettem Font ersetzt. In der Theorie gut, in der Praxis schwierig wegen eines enorm hohen Konfigurationsaufwands.</p><p>Nach dem gleichen Prinzip funktioniert das js-Plugin <a
href="http://typeface.neocracy.org/">Typeface</a>. Nur ist es etwas praktischer in der Handhabung.<br
/> Der folgende Code bindet einen normalen Font und einen später beschriebenen Bold-Font ein:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1100code10'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p110010"><td
class="line_numbers"><pre>1
2
3
</pre></td><td
class="code" id="p1100code10"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;typeface-0.14.js&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>mce<span style="color: #339933;">:</span><span style="color: #CC0000;">0</span><span style="color: #339933;">--&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;mysrcFont.typeface.js&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>mce<span style="color: #339933;">:</span><span style="color: #CC0000;">1</span><span style="color: #339933;">--&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;mysrcFontBold.typeface.js&quot;</span><span style="color: #339933;">&gt;&lt;!--</span>mce<span style="color: #339933;">:</span><span style="color: #CC0000;">2</span><span style="color: #339933;">--&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div><p>Um dem Text die entsprechende Schriftart zuzuweißen, benutzt man einfach die CSS Anweisung font-family.</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1100code11'); return false;">View Code</a> HTML</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p110011"><td
class="line_numbers"><pre>1
2
</pre></td><td
class="code" id="p1100code11"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;text&quot; style=&quot;font-family: mySrc Font;&quot;&gt;
Lorum ipsolum...&lt;/div&gt;</pre></td></tr></table></div><p>Den Namen des im syle-Attribut verwendeten Fonts kann man in den jeweiligen js-Dateien nachlesen.<br
/> Das Ganze hat zwei Nachteile, wie sie auch schon auf der Website beschrieben werden. <strong>Performanceprobleme</strong> bei größeren Textmengen und Standard-CSS <strong>Hovereffekte</strong> funktionieren nicht mehr.<br
/> Damit der Font in eine Javascript Datei umgewandelt werden muss er in einem <strong>Truetype oder Opentype Format</strong> vorliegen. Nicht immer ist bei diesen Schriften auch die fette Variante integriert. Um das in den Griff zu bekommen, kann man mit einem Font Bearbeitungstool nur die Bold-Variante exportieren und diese ebenfalls umwandeln. Bindet man nun diese beide JS-Dateien ein und weist die Bold-Schrift einem einem HTML-Element zu, passiert abgesehen von einer Fehlerausgabe in der Firebug Konsole nichts.<br
/> Die Lösung dafür ist ganz einfach. Der <strong>Font-Converter</strong> auf der Typeface Website integriert auch Informationen über Schriftschnitte weshalb der CSS-Selektor diese Info auch benötigt:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1100code12'); return false;">View Code</a> CSS</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p110012"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td
class="code" id="p1100code12"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#text</span><span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> mySrc Font<span style="color: #00AA00;">,</span> Verdana<span style="color: #00AA00;">,</span> Arial<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#boldFont</span><span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> mySrc Boldfont<span style="color: #00AA00;">,</span> Verdana<span style="color: #00AA00;">,</span> Arial<span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div><p>Damit ist der Workaround für die Einbettung von normalen und bold Schriften perfekt.</p><p><a
title="Cufón – Eine Javascript alternative zu sIFR" href="http://www.mysrc.de/web-development/cufon-eine-javascript-alternative-zu-sifr/">Cufón – Eine Javascript alternative zu sIFR</a><br
/> <a
title="sIFR 3 r436 – scroll-Problem im Firefox 3, ie6/7" href="http://www.mysrc.de/javascript/sifr-3-r436-scroll-problem-im-firefox-3-ie67/">sIFR 3 r436 – scroll-Problem im Firefox 3, ie6/7</a></p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>15. April 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-versus-css/" title="jQuery versus CSS">jQuery versus CSS</a></li><li>12. April 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-ui-css-framework/" title="jQuery UI CSS Framework">jQuery UI CSS Framework</a></li><li>8. April 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-media-plugin-zum-einbinden-verschiedener-mime-types/" title="jQuery Media Plugin zum Einbinden verschiedener Mime-Types">jQuery Media Plugin zum Einbinden verschiedener Mime-Types</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/javascript/typeface-mit-font-weightbold/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>jQuery load function &#8211; Ajax the simple way (Part 1)</title><link>http://www.mysrc.de/jquery/jquery-load-function-ajax-the-simple-way-part-1/</link> <comments>http://www.mysrc.de/jquery/jquery-load-function-ajax-the-simple-way-part-1/#comments</comments> <pubDate>Tue, 08 Dec 2009 21:50:06 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[AJAX]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[api]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=1055</guid> <description><![CDATA[Mit der load Funktion lassen sich einfach HTML-Elemente einer Datei in die Aktuelle einfügen. Diese Funktion ist in erster Linie für den &#8220;import&#8221; von HTML-Code gedacht und entspricht damit nicht dem typischen Ajax-Request bei dem bspw. ein PHP Skript angesprochen wird, das Daten aus der Datenbank liest und/oder andere serverseitige Prozesse anstösst. Soviel erstmal zur [...]]]></description> <content:encoded><![CDATA[<p>Mit der <a
href="http://docs.jquery.com/Ajax/load">load</a> Funktion lassen sich einfach HTML-Elemente einer Datei in die Aktuelle einfügen. Diese Funktion ist in erster Linie für den<strong> &#8220;import&#8221; von HTML-Code</strong> gedacht und entspricht damit <strong>nicht dem typischen Ajax-Request</strong> bei dem bspw. ein PHP Skript angesprochen wird, das Daten aus der Datenbank liest und/oder andere serverseitige Prozesse anstösst.</p><p>Soviel erstmal zur Theorie, der Funktionsaufruf sieht wie folgt aus:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1055code15'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p105515"><td
class="line_numbers"><pre>1
</pre></td><td
class="code" id="p1055code15"><pre class="javascript" style="font-family:monospace;"> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#someElement'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">load</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'/someFile #mydiv'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>So kurz so einfach. In das Element mit der id <strong>&#8220;someElement&#8221;</strong> wird der gesamte Inhalt eines divs mit der id &#8220;mydiv&#8221; geladen. Das geniale dabei ist, dass sich <strong>&#8220;mydiv&#8221;</strong> überhaupt nicht im aktuellen Dokument befindet, sondern in der Datei <strong>&#8220;someFile&#8221;</strong>.<br
/> Als<strong> zweiten Parameter</strong> kann man der load Funktion auch noch Daten als sogenanntes <strong>Key/Value Paar</strong> übergeben.</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p1055code16'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p105516"><td
class="line_numbers"><pre>1
</pre></td><td
class="code" id="p1055code16"><pre class="javascript" style="font-family:monospace;"> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#someElement'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">load</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'someFile.php'</span><span style="color: #339933;">,</span><span style="color: #009900;">&#123;</span><span style="color: #3366CC;">'param'</span><span style="color: #339933;">:</span> <span style="color: #3366CC;">'someValue'</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Das enspricht allerdings jetzt schon eher dem normalen Ajax-Request. Das oder die Key/Value Paare werden dem php-Skript als post-Paramter übergeben. Natürlich <strong>verliert man damit den Vorteil</strong> des vorigen Beispiels sich einfach DOM-Elemente aus einem anderen HTML-Skript zu holen. Aber falls man das Ergebnis eines Request einfach direkt <strong>ohne weitere Verarbeitung</strong> in ein Element einfügen möchte, ist das eine sehr einfache und komfortable Variante.</p><p>Im nächsten Teil wird es dann um die anderen fortgeschritten jQuery Ajax Varianten wie get, getJSON, etc. gehen.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>12. August 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-form-plugin-do-some-ajax-magic-easily/" title="jQuery Form Plugin &#8211; Do some AJAX magic easily">jQuery Form Plugin &#8211; Do some AJAX magic easily</a></li><li>16. Mai 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-formulare-validieren-ein-uberblick/" title="jQuery Formulare validieren &#8211; Ein Überblick">jQuery Formulare validieren &#8211; Ein Überblick</a></li><li>16. Mai 2009 -- <a
href="http://www.mysrc.de/jquery/formulare-mit-jquery-die-umfassende-serie/" title="Formulare mit jQuery &#8211; die umfassende Serie">Formulare mit jQuery &#8211; die umfassende Serie</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/jquery-load-function-ajax-the-simple-way-part-1/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>jQuery HowTo: Traversing</title><link>http://www.mysrc.de/allgemein/jquery-howto-traversing/</link> <comments>http://www.mysrc.de/allgemein/jquery-howto-traversing/#comments</comments> <pubDate>Thu, 26 Nov 2009 15:28:20 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[Allgemein]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[Best Practice]]></category> <category><![CDATA[Selektoren]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=969</guid> <description><![CDATA[Travesieren gehört zum grundlegenden Handwerkszeug, wenn man fortgeschrittene Animationen mittels jQuery durchführen möchte. Hier ein kleine Anleitung zum Auffinden bestimmter Elemente. Parent &#160;&#187;Child1 &#160;&#187;Child2 &#160;&#187;Child3 &#160;&#187;Child4 Move all Move filtered Set back Was passiert hier? Basis ist diese HTML Struktur: ?View Code HTML1 2 3 4 5 6 7 8 9 10 11 12 13 [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://de.wikipedia.org/wiki/Traversierung" target="blank">Travesieren</a> gehört zum grundlegenden Handwerkszeug, wenn man fortgeschrittene Animationen mittels jQuery durchführen möchte. Hier ein kleine Anleitung zum Auffinden bestimmter Elemente.</p><div
style="border: 1px dotted #ccc">Parent</p><div> &nbsp;&raquo;Child1</div><div
class="move"> &nbsp;&raquo;Child2</div><div> &nbsp;&raquo;Child3</div><div
class="move not"> &nbsp;&raquo;Child4</div></div><div
id="someWrapper"> <a
id="testone" href="#">Move all</a><br
/> <a
id="testtwo" href="#">Move filtered</a><br/><br
/> <a
id="setBack" href="#">Set back</a></div><p>Was passiert hier? Basis ist diese HTML Struktur:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p969code20'); return false;">View Code</a> HTML</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p96920"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td
class="code" id="p969code20"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;someParent&quot; style=&quot;border: 1px dotted #ccc&quot;&gt;Parent
&lt;div&gt;
 Child1
&lt;/div&gt;
&lt;div class=&quot;move&quot;&gt;
 Child2
&lt;/div&gt;
&lt;div&gt;
 Child3
&lt;/div&gt;
&lt;div class=&quot;move not&quot;&gt;
 Child4
&lt;/div&gt;
&lt;/div&gt;
&nbsp;
&lt;div id=&quot;someWrapper&quot;&gt;
&lt;a  id=&quot;testone&quot; href=&quot;#&quot;&gt;Move all&lt;/a&gt;
&lt;a id=&quot;testtwo&quot; href=&quot;#&quot;&gt;Move filtered&lt;/a&gt;
&lt;/div&gt;</pre></td></tr></table></div><p>Folgender Javascript-Code führt die Animation aus. Ausgehend von dem Link wird mit den Methoden <strong>parent</strong> das div &#8220;someWrapper&#8221; selektiert, <strong>prev</strong> wählt das vorige Element mit der id &#8220;someParent&#8221; und schlussendlich werden mit <strong>children</strong> alle Elemente innerhalb von &#8220;someParent&#8221; selektiert.<br
/> Die id&#8217;s im Beispiel dienen nur der Veranschaulichung. Die zu animierenden Elemente werden ausschließlich über die Struktur des <a
href="http://de.wikipedia.org/wiki/Document_Object_Model" target="blank">DOM</a> gefunden.</p><p><script type="text/javascript">jQuery("#testone").click(function (e) {
    jQuery(this).parent().prev().children().animate({'paddingLeft':'20px'},200);
     return false;
});
jQuery("#testtwo").click(function (e) {
   jQuery(this).parent().prev().children().filter(".move").not(".not").animate({'paddingLeft':'20px'},200);
    return false;
});
jQuery("#setBack").click(function (e) {
   jQuery(this).parent().prev().children().animate({'paddingLeft':0},200);
    return false;
});</script></p><p>jQuery Code für &#8220;Move all&#8221;:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p969code21'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p96921"><td
class="line_numbers"><pre>1
2
3
4
</pre></td><td
class="code" id="p969code21"><pre class="javascript" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#testone&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    jQuery<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">prev</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">children</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><span style="color: #3366CC;">'paddingLeft'</span><span style="color: #339933;">:</span><span style="color: #3366CC;">'20px'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><span style="color: #CC0000;">200</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Nun zur fortgeschrittenen Variante. Basis dafür sind die jQuery Funktion, <strong>filter</strong> und <strong>not</strong>.<br
/> jQuery Code für &#8220;Move filtered&#8221;:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p969code22'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p96922"><td
class="line_numbers"><pre>1
2
3
4
</pre></td><td
class="code" id="p969code22"><pre class="javascript" style="font-family:monospace;">jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#testtwo&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   jQuery<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">prev</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">children</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">filter</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.move&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">not</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.not&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">animate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><span style="color: #3366CC;">'paddingLeft'</span><span style="color: #339933;">:</span><span style="color: #3366CC;">'20px'</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span><span style="color: #CC0000;">200</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>19. November 2010 -- <a
href="http://www.mysrc.de/jquery/praxistipp-suchfeld-leeren-on-focus-jquery/" title="Praxistipp: Suchfeld leeren on focus (jQuery)">Praxistipp: Suchfeld leeren on focus (jQuery)</a></li><li>14. November 2010 -- <a
href="http://www.mysrc.de/jquery/fadetoggle-die-neue-in-jquery-1-4-4/" title="fadeToggle &#8211; die Neue in jQuery 1.4.4">fadeToggle &#8211; die Neue in jQuery 1.4.4</a></li><li>23. März 2010 -- <a
href="http://www.mysrc.de/jquery/praxistipp-%e2%80%93-jqtransform-bug-bei-input-in-firefox-3-5-2/" title="Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2">Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/allgemein/jquery-howto-traversing/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Praxistipp: jqTransform Button width einstellen</title><link>http://www.mysrc.de/jquery/praxistipp-jqtransform-button-width-einstellen/</link> <comments>http://www.mysrc.de/jquery/praxistipp-jqtransform-button-width-einstellen/#comments</comments> <pubDate>Tue, 20 Oct 2009 12:52:40 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[jQuery]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[Tipp!]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=895</guid> <description><![CDATA[So nett und schön das jqTransform Plugin auch ist, macht es i.A. doch ein paar kleine Probleme. Neben der unterschiedlichen Interpretation der Breite von Textfeldern in FF und IE, lässt sich auch die Breite der Standardbuttons nicht aus dem eigenen CSS einstellen. Wer dies tun möchte und die entsprechende Einstellung nicht finden kann, dem sei [...]]]></description> <content:encoded><![CDATA[<p>So nett und schön das <a
href="http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/">jqTransform Plugin</a> auch ist, macht es i.A. doch ein paar kleine Probleme. Neben der <a
href="http://www.mysrc.de/jquery/praxistipp-jqtransform-width-bug/">unterschiedlichen Interpretation der Breite von Textfeldern</a> in FF und IE, lässt sich auch die Breite der Standardbuttons nicht aus dem eigenen CSS einstellen.</p><p>Wer dies tun möchte und die entsprechende Einstellung nicht finden kann, dem sei hier eine kleine Hilfe geboten. Dazu müsst ihr die <strong>jqtransform.css</strong> öffnen und in Z.36 dem Selektor &#8220;button.jqTransformButton span span&#8221; die <strong>neue Eigenschaft width</strong> zuweisen.<br
/> Das kann dann beispielsweise wie folgt aussehen:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p895code24'); return false;">View Code</a> CSS</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p89524"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td
class="code" id="p895code24"><pre class="css" style="font-family:monospace;">button<span style="color: #6666ff;">.jqTransformButton</span> span span <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">transparent</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">img/btn_left.gif</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #000000; font-weight: bold;">top</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#333</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #933;">4px</span> <span style="color: #933;">0px</span> <span style="color: #933;">8px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">13px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">33px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">min-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>16. Oktober 2009 -- <a
href="http://www.mysrc.de/jquery/praxistipp-jqtransform-width-bug/" title="Praxistipp &#8211; jqTransform width bug">Praxistipp &#8211; jqTransform width bug</a></li><li>5. August 2009 -- <a
href="http://www.mysrc.de/jquery/tipp-highlighten-eins-li%c2%b4s-innerhalb-einer-list-mit-jquery/" title="Tipp! &#8211; Highlighten eins li´s innerhalb einer Liste mit jQuery">Tipp! &#8211; Highlighten eins li´s innerhalb einer Liste mit jQuery</a></li><li>25. November 2010 -- <a
href="http://www.mysrc.de/jquery/jquery-mobile-web-apps-mit-jquery/" title="jQuery Mobile &#8211; Web-Apps mit jQuery">jQuery Mobile &#8211; Web-Apps mit jQuery</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/praxistipp-jqtransform-button-width-einstellen/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Praxistipp &#8211; jqTransform width bug</title><link>http://www.mysrc.de/jquery/praxistipp-jqtransform-width-bug/</link> <comments>http://www.mysrc.de/jquery/praxistipp-jqtransform-width-bug/#comments</comments> <pubDate>Fri, 16 Oct 2009 12:58:02 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[jQuery]]></category> <category><![CDATA[Best Practice]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[Tipp!]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=890</guid> <description><![CDATA[Wer jqTransform schon einmal benutzt hat wird sicherlich festgestellt haben, dass der Internet Explorer und der Firefox Browser die Textfelder in einer unterschiedlichen Breite darstellen. Das ist zurückzuführen auf das size-Attribut, dass selbst wenn nicht im input Feld verankert im IE mitberücksichtigt wird. Ein kleiner Workaround dafür ist, die Berechnung des Size-Attributs im js-Code zu [...]]]></description> <content:encoded><![CDATA[<p>Wer <a
href="http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/">jqTransform</a> schon einmal benutzt hat wird sicherlich festgestellt haben, dass der Internet Explorer und der Firefox Browser die<strong> Textfelder in einer unterschiedlichen Breite</strong> darstellen.<br
/> Das ist zurückzuführen auf das size-Attribut, dass selbst wenn nicht im input Feld verankert im IE mitberücksichtigt wird.</p><p>Ein kleiner <strong>Workaround </strong>dafür ist, die Berechnung des Size-Attributs im js-Code zu entfernen. Selbstverständlich mit der Folge, dass dieses Attribut <strong>nicht mehr zu diesem Zweck eingesetzt werden kann</strong>. Was ich persönlich als nicht weiter schlimm erachte, da zur Best Practice des Webprogrammieres gehört, die Festlegung von Oberflächeneigenschaften über das CSS zu definieren.</p><p>Nun zum Workaround:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p890code26'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p89026"><td
class="line_numbers"><pre>1
2
3
4
5
</pre></td><td
class="code" id="p890code26"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// Z. 107 in der jquery.transform.js</span>
	<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>$input.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'size'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		inputSize <span style="color: #339933;">=</span> $input.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'size'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span><span style="color: #CC0000;">10</span><span style="color: #339933;">;</span>
		$input.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'width'</span><span style="color: #339933;">,</span>inputSize<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span></pre></td></tr></table></div><p>Diesen Codeteil könnt ihr einfach löschen, da es zur falschen Berechnung der Breite für die Textfelder führt. Ich konnte keine ungewollten Seiteneffekte feststellen. Wenn ihr etwas findet, wäre ich dankbar für Kommentare.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>5. August 2009 -- <a
href="http://www.mysrc.de/jquery/tipp-highlighten-eins-li%c2%b4s-innerhalb-einer-list-mit-jquery/" title="Tipp! &#8211; Highlighten eins li´s innerhalb einer Liste mit jQuery">Tipp! &#8211; Highlighten eins li´s innerhalb einer Liste mit jQuery</a></li><li>23. März 2010 -- <a
href="http://www.mysrc.de/jquery/praxistipp-%e2%80%93-jqtransform-bug-bei-input-in-firefox-3-5-2/" title="Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2">Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2</a></li><li>20. Oktober 2009 -- <a
href="http://www.mysrc.de/jquery/praxistipp-jqtransform-button-width-einstellen/" title="Praxistipp: jqTransform Button width einstellen">Praxistipp: jqTransform Button width einstellen</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/praxistipp-jqtransform-width-bug/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Praxistip &#8211; jqTransform und display:none</title><link>http://www.mysrc.de/jquery/praxistip-jqtransform-und-display-none/</link> <comments>http://www.mysrc.de/jquery/praxistip-jqtransform-und-display-none/#comments</comments> <pubDate>Thu, 10 Sep 2009 15:21:25 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[jQuery]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=873</guid> <description><![CDATA[Wenn jemand schon einmal versucht hat ein, mit jqTransform umgewandeltes Formularfeld, in einem auf display:none gesetzten HTML-Element anzuzeigen, dürfte er auf Probleme gestossen sein. Das lässt sich mit einem kleinen Workaround, ohne in das Original js ändern zu müssen, leicht beheben. Zuerst die display Eigenschaft wieder sichtbar setzen ?View Code HTML1 2 3 4 5 [...]]]></description> <content:encoded><![CDATA[<p>Wenn jemand schon einmal versucht hat ein, mit <a
href="http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/" target="blank">jqTransform</a> umgewandeltes Formularfeld, in einem auf <strong>display:none</strong> gesetzten HTML-Element <strong>anzuzeigen</strong>, dürfte er auf Probleme gestossen sein.<br
/> Das lässt sich mit einem kleinen Workaround, ohne in das Original js ändern zu müssen, leicht beheben.</p><p>Zuerst die display Eigenschaft wieder sichtbar setzen</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p873code29'); return false;">View Code</a> HTML</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p87329"><td
class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td
class="code" id="p873code29"><pre class="html" style="font-family:monospace;">&lt;form action=&quot;some.php&quot; id=&quot;myForm&quot; method=&quot;post&quot;&gt;
  &lt;div style=&quot;display:block&quot; id=&quot;status&quot;&gt;
     &lt;input type=&quot;text&quot; value=&quot;content&quot; /&gt;
  &lt;/div&gt;
&lt;/form&gt;
&lt;/div&gt;</pre></td></tr></table></div><p>Wäre die CSS-Eigenschaft <strong>display auf none</strong> gesetzt, würde das eingebaute jqTransform zur fehlenhaften Anzeige führen. Um dieses Element jetzt trotzdem nicht anzuzeigen kann man einfach folgendes Codestück im &#8220;document ready&#8221; Event von jQuery einbauen</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p873code30'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p87330"><td
class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td
class="code" id="p873code30"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
jQuery<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #006600; font-style: italic;">//some code...</span>
&nbsp;
     jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#status'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hide</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'fast'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Das Prinzip lässt sich mit entsprechenden jQuery Selektoren natürlich auch auf mehrere Elemente übertragen.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>1. Dezember 2010 -- <a
href="http://www.mysrc.de/html5/jquery-mobile-der-eitenaufbau/" title="jQuery Mobile &#8211; Der Seitenaufbau">jQuery Mobile &#8211; Der Seitenaufbau</a></li><li>25. November 2010 -- <a
href="http://www.mysrc.de/jquery/jquery-mobile-web-apps-mit-jquery/" title="jQuery Mobile &#8211; Web-Apps mit jQuery">jQuery Mobile &#8211; Web-Apps mit jQuery</a></li><li>19. November 2010 -- <a
href="http://www.mysrc.de/jquery/praxistipp-suchfeld-leeren-on-focus-jquery/" title="Praxistipp: Suchfeld leeren on focus (jQuery)">Praxistipp: Suchfeld leeren on focus (jQuery)</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/praxistip-jqtransform-und-display-none/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>IxEdit &#8211; jQuery the easy way</title><link>http://www.mysrc.de/jquery/ixedit-jquery-the-easy-way/</link> <comments>http://www.mysrc.de/jquery/ixedit-jquery-the-easy-way/#comments</comments> <pubDate>Sun, 06 Sep 2009 13:43:37 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[JS-Framework Tutorials]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[Coding]]></category> <category><![CDATA[jQuery UI]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=860</guid> <description><![CDATA[Mit IxEdit ist es möglich JQuery Funktionen ohne JS-Programmierung direkt on-the-Fly im Browser den gewünschten HTML Elementen zuzuweißen. Statt vieler weiterer Worte das Demo Video: Wenn ihr es ausprobieren wollt, so gehts: 1. Als erstes die notwendigen IxEdit Dateien von IxEdit herunterladen 2. Das das Google Gears Firefox Addon Google Gears Portable installieren und Browser [...]]]></description> <content:encoded><![CDATA[<p>Mit <a
href="http://www.ixedit.com/" target="blank">IxEdit</a> ist es möglich JQuery Funktionen <strong>ohne JS-Programmierung</strong> direkt <strong>on-the-Fly</strong> im Browser den gewünschten HTML Elementen zuzuweißen. Statt vieler weiterer Worte das Demo Video:</p><p><object
width="425" height="344"><param
name="movie" value="http://www.youtube.com/v/OblVz5-D8EI&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=ja&#038;feature=player_embedded&#038;fs=1"></param><param
name="allowFullScreen" value="true"></param><param
name="allowScriptAccess" value="always"></param><embed
src="http://www.youtube.com/v/OblVz5-D8EI&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=ja&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p><p>Wenn ihr es ausprobieren wollt, so gehts:</p><p>1. Als erstes die notwendigen IxEdit Dateien von <a
href="http://www.ixedit.com/download/" target="blank">IxEdit</a> herunterladen</p><p>2. Das das Google Gears Firefox Addon <a
href="https://addons.mozilla.org/de/firefox/addon/13492" target="blank">Google Gears Portable</a> installieren und Browser neu starten</p><p>3. Im entpackten IxEdit Ordner die index.html aufrufen</p><p>Nun könnt ihr den bestehenden HTML Elementen nach belieben jQuery Events zuweißen. Das Tool ist <strong>ideal zum Experimentieren</strong> mit verschiedenen Effekten und auch allgemein um sich einen besseren Überblick über die Möglichkeiten von JQuery zu verschaffen.</p><p>Nachdem alle gewünschten Effekte integriert sind, wird mit <strong>der Deploy-Funktion</strong> der entsprechende jQuery Code angezeigt, der dann in das Quelldokument kopiert werden kann.</p><p>Easy oder!?</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>16. Oktober 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-accessible-ria-widgets-fur-jedermann/" title="jQuery &#8211; Accessible-RIA &#8211; Widgets für jedermann">jQuery &#8211; Accessible-RIA &#8211; Widgets für jedermann</a></li><li>27. Juli 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-tutorial-closing-an-accordion-automatically/" title="jQuery Tutorial &#8211; Closing an Accordion automatically">jQuery Tutorial &#8211; Closing an Accordion automatically</a></li><li>6. Juni 2009 -- <a
href="http://www.mysrc.de/jquery/tools-fur-jquery-ein-plugin-ui-elemente/" title="Tools für jQuery &#8211; Ein Plugin UI Elemente">Tools für jQuery &#8211; Ein Plugin UI Elemente</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/ixedit-jquery-the-easy-way/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Praxistip: Output Element des jQuery Validate Plugin ändern</title><link>http://www.mysrc.de/jquery/praxistip-output-element-des-jquery-validate-plugin-andern/</link> <comments>http://www.mysrc.de/jquery/praxistip-output-element-des-jquery-validate-plugin-andern/#comments</comments> <pubDate>Fri, 04 Sep 2009 19:32:05 +0000</pubDate> <dc:creator>Stefan Huissel</dc:creator> <category><![CDATA[jQuery]]></category> <category><![CDATA[fehlersuche]]></category> <category><![CDATA[Forms]]></category> <category><![CDATA[Formulare]]></category> <category><![CDATA[Plugin]]></category> <guid
isPermaLink="false">http://www.mysrc.de/?p=854</guid> <description><![CDATA[Das allseits bekannte jQuery Plugin um Formularfelder zu validieren funktioniert im Standardszenarion sogut wie problemlos. Schwieriger wird es schon wenn mehrere Plugins auf ein Formular angewendet werden, bei denen die Plugins eigene DOM-Elemente hinzufügen. Beispielsweise jqTransform Glücklicherweise bietet das validate Plugin dafür eine wunderbare Funktion, nämlich errorPlacement. Die Funktion sieht so aus: ?View Code JAVASCRIPT1 [...]]]></description> <content:encoded><![CDATA[<p>Das allseits bekannte <a
href="http://docs.jquery.com/Plugins/Validation" target="blank">jQuery Plugin</a> um <a
href="http://www.mysrc.de/jquery/jquery-formulare-validieren-ein-uberblick/">Formularfelder zu validieren</a> funktioniert im Standardszenarion sogut wie problemlos.</p><p>Schwieriger wird es schon wenn <strong>mehrere Plugins</strong> auf ein Formular angewendet werden, bei denen die Plugins eigene DOM-Elemente hinzufügen. Beispielsweise <a
href="http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/" target="blank">jqTransform</a></p><p>Glücklicherweise bietet das validate Plugin dafür eine wunderbare Funktion, nämlich <strong>errorPlacement</strong>.<br
/> Die Funktion sieht so aus:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p854code34'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p85434"><td
class="line_numbers"><pre>1
2
3
</pre></td><td
class="code" id="p854code34"><pre class="javascript" style="font-family:monospace;"> errorPlacement<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>error<span style="color: #339933;">,</span> element<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     error.<span style="color: #660066;">appendTo</span><span style="color: #009900;">&#40;</span> element.<span style="color: #660066;">TRAVERSINGFUNKTION</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span></pre></td></tr></table></div><p>Nehmen wir ein Formular:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p854code35'); return false;">View Code</a> HTML</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p85435"><td
class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td
class="code" id="p854code35"><pre class="html" style="font-family:monospace;">&lt;form action=&quot;somescript.php&quot; id=&quot;form&quot; method=&quot;get&quot;&gt;
   &lt;input type=&quot;text&quot; name=&quot;user&quot;&gt;
   &lt;label&gt;&lt;label&gt;
   &lt;input type=&quot;text&quot; name=&quot;pw&quot;&gt;
   &lt;label&gt;&lt;label&gt;
&lt;/form&gt;
 &lt;div id=&quot;error&quot;&gt;&lt;/div&gt;</pre></td></tr></table></div><p>Per Default wird vom validate Plugin ein Label-Tag hinter jedes input-Feld eingefügt. Will man nun den error an einer <strong>anderen Stelle zeigen</strong> kann man die Funktion folgendermaßen umschreiben:</p><div
class="wp_codebox_msgheader"><span
class="right"><sup><a
href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span
style="color: #99cc00">?</span></a></sup></span><span
class="left"><a
href="javascript:;" onclick="javascript:showCodeTxt('p854code36'); return false;">View Code</a> JAVASCRIPT</span><div
class="codebox_clear"></div></div><div
class="wp_codebox"><table><tr
id="p85436"><td
class="line_numbers"><pre>1
2
3
4
5
</pre></td><td
class="code" id="p854code36"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#form&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">validate</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
  errorPlacement<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>error<span style="color: #339933;">,</span> element<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     error.<span style="color: #660066;">appendTo</span><span style="color: #009900;">&#40;</span> element.<span style="color: #660066;">next</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div><p>Die Fehlermeldungen würde nun <strong>ausgehend vom input</strong> (element) in das <strong>nächste DOM Element</strong>, in unserem Fall das label-Tag, <strong>geschrieben </strong>werden.<br
/> Natürlich haben wir mit diesem Beispiel nur wieder das Ausgangsverhalten des Plugins erreicht. Dieses Prinzip lässt leicht auf komplexere Anwendungsfälle übertragen. Wie beispielsweise bei erwähntem jqTransform, bei dem um das input-Feld mehrere Divs gelegt werden. Die Fehlermeldung des Validate Plugins wird dann unterhalb (auf z-Ebene) der Felder angezeigt. Durch travesieren durch den DOM-Baum können die Fehlermeldungen beliebig positioniert werden.</p><h3  class="related_post_title">Ähnliche Artikel</h3><ul
class="related_post"><li>12. August 2009 -- <a
href="http://www.mysrc.de/jquery/jquery-form-plugin-do-some-ajax-magic-easily/" title="jQuery Form Plugin &#8211; Do some AJAX magic easily">jQuery Form Plugin &#8211; Do some AJAX magic easily</a></li><li>4. August 2009 -- <a
href="http://www.mysrc.de/jquery/formularfelder-vorausfullen-und-leeren-mit-jquery-clearfield/" title="Formularfelder vorausfüllen und leeren mit jQuery Clearfield">Formularfelder vorausfüllen und leeren mit jQuery Clearfield</a></li><li>30. Juni 2009 -- <a
href="http://www.mysrc.de/allgemein/jquery-mypass-password-hiding-iphone-style/" title="jQuery myPass &#8211; password hiding iPhone-Style">jQuery myPass &#8211; password hiding iPhone-Style</a></li></ul>]]></content:encoded> <wfw:commentRss>http://www.mysrc.de/jquery/praxistip-output-element-des-jquery-validate-plugin-andern/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
