<?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>Anthor.Net &#187; jQuery</title>
	<atom:link href="http://www.anthor.net/blog/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anthor.net</link>
	<description></description>
	<lastBuildDate>Mon, 05 Dec 2011 16:29:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Ajax Queue avec jQuery</title>
		<link>http://www.anthor.net/blog/developpement/ajax-queue-avec-jquery/</link>
		<comments>http://www.anthor.net/blog/developpement/ajax-queue-avec-jquery/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 09:19:54 +0000</pubDate>
		<dc:creator>Anthor</dc:creator>
				<category><![CDATA[Développement]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.anthor.net/?p=526</guid>
		<description><![CDATA[En travaillant sur un nouvel outil ce week-end, je me suis rendu compte que l&#8217;utilisation des queues en Ajax avec jQuery n&#8217;était pas natif. Il existe quelques pistes à ces adresses, mais rien de vraiment pratique : http://jquery.com/plugins/project/ajaxqueue http://docs.jquery.com/AjaxQueue Puis j&#8217;ai trouvé une version plus intéressante de celui-ci dans le plugin [jQuery Autocomplete&#124;http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/&#124;en], néanmoins, même [...]]]></description>
			<content:encoded><![CDATA[<p>En travaillant sur un nouvel outil ce week-end, je me suis rendu compte que l&#8217;utilisation des queues en Ajax avec jQuery n&#8217;était pas natif.<br />
Il existe quelques pistes à ces adresses, mais rien de vraiment pratique :</p>
<ul>
<li><a href="http://jquery.com/plugins/project/ajaxqueue" target="_blank">http://jquery.com/plugins/project/ajaxqueue</a></li>
<li><a href="http://docs.jquery.com/AjaxQueue" target="_blank">http://docs.jquery.com/AjaxQueue</a></li>
</ul>
<p>Puis j&#8217;ai trouvé une version plus intéressante de celui-ci dans le plugin [jQuery Autocomplete|http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/|en], néanmoins, même si la fonction ABORT fonctionne correctement, mes appels en queue ne fonctionnaient pas.<br />
J&#8217;en ai donc légèrement modifié les sources, en ajoutant un mode DEQUEUE me permettant de lancer la liste d&#8217;attente en fin de boucle par exemple.</p>
<p>Grâce à l&#8217;utilisation de la variable PORT, on peux ainsi contrôler indépendamment plusieurs queues, ou annuler des requêtes spécifiques, le tout en utilisant la fonction Ajax de jQuery.</p>
<p><span id="more-526"></span></p>
<h4>Le plugin</h4>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">/**
 * Ajax Queue Plugin
 */</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: #003366; font-weight: bold;">var</span> ajax <span style="color: #339933;">=</span> $.<span style="color: #660066;">ajax</span><span style="color: #339933;">;</span>
    <span style="color: #003366; font-weight: bold;">var</span> pendingRequests <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
    $.<span style="color: #660066;">ajax</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>settings<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        settings <span style="color: #339933;">=</span> jQuery.<span style="color: #660066;">extend</span><span style="color: #009900;">&#40;</span>
            settings<span style="color: #339933;">,</span> 
            jQuery.<span style="color: #660066;">extend</span><span style="color: #009900;">&#40;</span>
                <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> 
                jQuery.<span style="color: #660066;">ajaxSettings</span><span style="color: #339933;">,</span> 
                settings
            <span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
        <span style="color: #003366; font-weight: bold;">var</span> port <span style="color: #339933;">=</span> settings.<span style="color: #660066;">port</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #000066; font-weight: bold;">switch</span><span style="color: #009900;">&#40;</span>settings.<span style="color: #660066;">mode</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000066; font-weight: bold;">case</span> <span style="color: #3366CC;">&quot;abort&quot;</span><span style="color: #339933;">:</span> 
                <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> pendingRequests<span style="color: #009900;">&#91;</span>port<span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                    pendingRequests<span style="color: #009900;">&#91;</span>port<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">abort</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #009900;">&#125;</span>
                <span style="color: #000066; font-weight: bold;">return</span> pendingRequests<span style="color: #009900;">&#91;</span>port<span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> ajax.<span style="color: #660066;">apply</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #339933;">,</span> arguments<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
            <span style="color: #000066; font-weight: bold;">case</span> <span style="color: #3366CC;">&quot;queue&quot;</span><span style="color: #339933;">:</span> 
                <span style="color: #003366; font-weight: bold;">var</span> _old <span style="color: #339933;">=</span> settings.<span style="color: #660066;">complete</span><span style="color: #339933;">;</span>
                settings.<span style="color: #660066;">complete</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>
                    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> _old <span style="color: #009900;">&#41;</span>
                        _old.<span style="color: #660066;">apply</span><span style="color: #009900;">&#40;</span> <span style="color: #000066; font-weight: bold;">this</span><span style="color: #339933;">,</span> arguments <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                    jQuery<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span>ajax<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">dequeue</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;ajax&quot;</span> <span style="color: #339933;">+</span> port <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
                jQuery<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span> ajax <span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">queue</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;ajax&quot;</span> <span style="color: #339933;">+</span> port<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>
                    ajax<span style="color: #009900;">&#40;</span> settings <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>
                <span style="color: #000066; font-weight: bold;">return</span><span style="color: #339933;">;</span>
&nbsp;
            <span style="color: #000066; font-weight: bold;">case</span> <span style="color: #3366CC;">&quot;dequeue&quot;</span><span style="color: #339933;">:</span> 
                jQuery<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span>ajax<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">dequeue</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;ajax&quot;</span> <span style="color: #339933;">+</span> port <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
                <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>jQuery.<span style="color: #660066;">isFunction</span><span style="color: #009900;">&#40;</span>settings.<span style="color: #660066;">complete</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
                    settings.<span style="color: #660066;">complete</span><span style="color: #009900;">&#40;</span>settings<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
                <span style="color: #000066; font-weight: bold;">return</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
&nbsp;
        <span style="color: #000066; font-weight: bold;">return</span> ajax.<span style="color: #660066;">apply</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #339933;">,</span> arguments<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>jQuery<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h4>Utilisation de la méthode ABORT</h4>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$input.<span style="color: #660066;">bind</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'keyup'</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>event<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>$searchTimeout <span style="color: #339933;">!=</span> undefined<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        clearTimeout<span style="color: #009900;">&#40;</span>$searchTimeout<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    $searchTimeout <span style="color: #339933;">=</span> setTimeout<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>
        $searchTimeout <span style="color: #339933;">=</span> undefined<span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #003366; font-weight: bold;">var</span> inputVal <span style="color: #339933;">=</span> $input.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/^\s+/g</span><span style="color: #339933;">,</span><span style="color: #3366CC;">''</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #009966; font-style: italic;">/\s+$/g</span><span style="color: #339933;">,</span><span style="color: #3366CC;">''</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        $.<span style="color: #660066;">ajax</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
            mode    <span style="color: #339933;">:</span> <span style="color: #3366CC;">'abort'</span><span style="color: #339933;">,</span>
            port    <span style="color: #339933;">:</span> <span style="color: #3366CC;">'ajaxSuggestions'</span><span style="color: #339933;">,</span>
            type    <span style="color: #339933;">:</span> <span style="color: #3366CC;">'POST'</span><span style="color: #339933;">,</span>
            url     <span style="color: #339933;">:</span> <span style="color: #3366CC;">'test.php'</span><span style="color: #339933;">,</span>
            data    <span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span> <span style="color: #3366CC;">'keywords'</span><span style="color: #339933;">:</span> inputVal <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
            success <span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>msg<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span>msg<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>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">500</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></div></div>

<p>Cette méthode est plus qu&#8217;intéressante dans le cas par exemple ou l&#8217;on souhaite afficher des informations au fur et à mesure que l&#8217;utilisateur écrit une information. Les requêtes précédentes utilisant le même port sont annulées au profit de la nouvelle requête, évitant un engorgement des informations et des erreurs dans le cas ou une requête ultérieure soit plus rapide que les précédentes.</p>
<h4>Utilisation de la méthode QUEUE</h4>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span> i <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span> <span style="color: #339933;">;</span> i <span style="color: #339933;">&lt;=</span> <span style="color: #CC0000;">10</span> <span style="color: #339933;">;</span> i<span style="color: #339933;">++</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    $.<span style="color: #660066;">ajax</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
        mode<span style="color: #339933;">:</span> <span style="color: #3366CC;">'queue'</span><span style="color: #339933;">,</span>
        port<span style="color: #339933;">:</span> <span style="color: #3366CC;">'ajaxWhois'</span><span style="color: #339933;">,</span>
        type<span style="color: #339933;">:</span> <span style="color: #3366CC;">'POST'</span><span style="color: #339933;">,</span>
        url<span style="color: #339933;">:</span> <span style="color: #3366CC;">'test.php'</span><span style="color: #339933;">,</span>
        data<span style="color: #339933;">:</span> <span style="color: #009900;">&#123;</span> <span style="color: #3366CC;">'increment'</span><span style="color: #339933;">:</span> i <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
        success<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>msg<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
            <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span>msg<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>
<span style="color: #009900;">&#125;</span>
&nbsp;
$.<span style="color: #660066;">ajax</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span> mode<span style="color: #339933;">:</span> <span style="color: #3366CC;">'dequeue'</span><span style="color: #339933;">,</span> port<span style="color: #339933;">:</span> <span style="color: #3366CC;">'ajaxWhois'</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>La méthode queue permet de boucler facilement sur plusieurs requêtes et ne les lancer qu&#8217;au moment choisit. Les requêtes ainsi lancées, le sont les unes à la suite des autres, évitant un engorgement des données reçues.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthor.net/blog/developpement/ajax-queue-avec-jquery/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Jeu de bataille en Javascript, pour le fun !</title>
		<link>http://www.anthor.net/blog/divers/jeu-de-bataille-en-javascript-pour-le-fun/</link>
		<comments>http://www.anthor.net/blog/divers/jeu-de-bataille-en-javascript-pour-le-fun/#comments</comments>
		<pubDate>Sat, 10 May 2008 16:00:58 +0000</pubDate>
		<dc:creator>Anthor</dc:creator>
				<category><![CDATA[Divers]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.anthor.net/?p=238</guid>
		<description><![CDATA[Juste pour le fun, une simulation d&#8217;une partie de jeu de carte, la bataille. Version plugin pour jQuery, pas forcement optimisé, ni complet ! J&#8217;ai réalisé le test, en 1h30, une nuit d&#8217;insomnie, suite à une question sur JeuWeb Le tout est visible ici : jQuery PlayCards]]></description>
			<content:encoded><![CDATA[<p>Juste pour le fun, une simulation d&#8217;une partie de jeu de carte, la <a href="http://fr.wikipedia.org/wiki/Bataille_%28jeu_de_cartes%29" target="_blank">bataille</a>.<br />
Version plugin pour jQuery, pas forcement optimisé, ni complet !</p>
<p>J&#8217;ai réalisé le test, en 1h30, une nuit d&#8217;insomnie, suite à une question sur <a href="http://www.jeuweb.org/" target="_blank">JeuWeb</a></p>
<p>Le tout est visible ici : <a href="http://www.anthor.net/labs/jquery-playcards/">jQuery PlayCards</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthor.net/blog/divers/jeu-de-bataille-en-javascript-pour-le-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Progression 1.2.1</title>
		<link>http://www.anthor.net/blog/developpement/jquery-progression-1-2-1/</link>
		<comments>http://www.anthor.net/blog/developpement/jquery-progression-1-2-1/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 08:45:54 +0000</pubDate>
		<dc:creator>Anthor</dc:creator>
				<category><![CDATA[Développement]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.anthor.net/?p=188</guid>
		<description><![CDATA[Une nouvelle version de jQuery Progression ajoutant le support du plugin Easing pour jQuery, ainsi que l&#8217;animation du texte, permettant ainsi d&#8217;avoir une progression réelle de la barre de progression. L&#8217;appel se fait toujours de la même manière. Une nouvelle démonstration vous permet de voir le rendu de ces deux nouvelles options. Le temps d&#8217;animation [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.anthor.net/wp-content/uploads/2008/01/progression.jpg" alt="" title="" width="175" height="100" class="alignleft size-full wp-image-156" /><br />
Une nouvelle version de <a href="http://www.anthor.net/labs/jquery-progression/">jQuery Progression</a> ajoutant le support du plugin Easing pour jQuery, ainsi que l&#8217;animation du texte, permettant ainsi d&#8217;avoir une progression réelle de la barre de progression.</p>
<p>L&#8217;appel se fait toujours de la même manière. Une nouvelle <a href="http://www.anthor.net/labs/jquery-progression/utilisation-avec-easing/">démonstration</a> vous permet de voir le rendu de ces deux nouvelles options.</p>
<p>Le temps d&#8217;animation correspond maintenant au temps total de l&#8217;animation pour parcourir la totalité de la barre de progression, ainsi l&#8217;animation garde une vitesse constante quel que soit la modification de valeur effectuée.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthor.net/blog/developpement/jquery-progression-1-2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Progression</title>
		<link>http://www.anthor.net/blog/developpement/jquery-progression/</link>
		<comments>http://www.anthor.net/blog/developpement/jquery-progression/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 11:00:40 +0000</pubDate>
		<dc:creator>Anthor</dc:creator>
				<category><![CDATA[Développement]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.anthor.net/?p=152</guid>
		<description><![CDATA[Créé à la base lors de recherches pour un moteur de jeu de rôles par navigateur, jQuery Progression est maintenant disponible de façon indépendante. Il nécessite l&#8217;utilisation de la librairie javascript jQuery. Il dispose de nombreuse options de personnalisations, ainsi que d&#8217;une compatibilité avec le plugin MetaData. Il est bien sûr totalement non obstrusif et [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.anthor.net/wp-content/uploads/2008/01/progression.jpg" alt="" title="" width="175" height="100" class="alignleft size-full wp-image-156" /><br />
Créé à la base lors de recherches pour un moteur de jeu de rôles par navigateur, jQuery Progression est maintenant disponible de façon indépendante.<br />
Il nécessite l&#8217;utilisation de la librairie javascript jQuery.</p>
<p>Il dispose de nombreuse options de personnalisations, ainsi que d&#8217;une compatibilité avec le plugin MetaData.<br />
Il est bien sûr totalement non obstrusif et fonctionne donc sur n&#8217;importe quel configuration.</p>
<p>Voir la <a href="http://www.anthor.net/labs/jquery-progression">page dédiée</a> pour plus d&#8217;informations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthor.net/blog/developpement/jquery-progression/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moteur d&#8217;animations dynamiques avec jQuery et MySQL</title>
		<link>http://www.anthor.net/blog/developpement/moteur-danimations-dynamiques-avec-jquery-et-mysql/</link>
		<comments>http://www.anthor.net/blog/developpement/moteur-danimations-dynamiques-avec-jquery-et-mysql/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 13:45:54 +0000</pubDate>
		<dc:creator>Anthor</dc:creator>
				<category><![CDATA[Développement]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.anthor.net/?p=126</guid>
		<description><![CDATA[J&#8217;ai eu l&#8217;occasion de travailler sur une animation devant tourner au MEDPI 2007. N&#8217;ayant pas les connaissances nécessaires pour le faire en utilisant Flash et MySQL, je me suis penché sur un moteur d&#8217;animation en Javascript. J&#8217;utilise jQuery, un back-office interne pour le traitement de la base de données, et le tout se recompose aléatoirement [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.anthor.net/wp-content/uploads/2007/07/www_mmcreation_com_demo_medpi2007.jpg" alt="" title="" width="175" height="107" class="alignleft size-full wp-image-129" /><br />
J&#8217;ai eu l&#8217;occasion de travailler sur une animation devant tourner au MEDPI 2007.<br />
N&#8217;ayant pas les connaissances nécessaires pour le faire en utilisant Flash et MySQL, je me suis penché sur un moteur d&#8217;animation en Javascript.</p>
<p>J&#8217;utilise jQuery, un back-office interne pour le traitement de la base de données, et le tout se recompose aléatoirement en suivant l&#8217;ordre des produits !<br />
3 modèles d&#8217;animations sont proposées.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anthor.net/blog/developpement/moteur-danimations-dynamiques-avec-jquery-et-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

