<?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>web2ajax &#187; Mes travaux</title>
	<atom:link href="http://www.web2ajax.fr/category/mes-travaux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.web2ajax.fr</link>
	<description>Tout l&#039;actualité du Web2.0 et de l&#039;AJAX</description>
	<lastBuildDate>Fri, 16 Jul 2010 12:29:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<atom:link rel='hub' href='http://www.web2ajax.fr/?pushpress=hub'/>
		<item>
		<title>Defer Google Analytics Tracking : jquery.gaTracker</title>
		<link>http://www.web2ajax.fr/2010/06/10/defer-google-analytics-tracking-jquery-gatracker/</link>
		<comments>http://www.web2ajax.fr/2010/06/10/defer-google-analytics-tracking-jquery-gatracker/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 16:01:27 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[website optimization]]></category>

		<guid isPermaLink="false">http://www.web2ajax.fr/?p=499</guid>
		<description><![CDATA[jQuery.gaTracker.js adds 2 features to standard Google Analytics script :- Asynchronous Tracking ( tracking start once page load is complete )- Allow to track dynamic pages on full ajax websitesImplementationLoad the last version of jQuery.To init your UA-ID and track the current page, you can use it like this :[sourcecode]jQuery(document).ready(function($) { $.gaTracker.init("YOUR-UA-ID");}) ;[/sourcecode]Firstly, this will [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<div class="content">jQuery.gaTracker.js adds 2 features to standard Google Analytics script :<br>- Asynchronous Tracking ( tracking start once page load is complete )<br>- Allow to track dynamic pages on full ajax websites<br><br>Implementation<br>Load the last version of jQuery.<br><br>To init your UA-ID and track the current page, you can use it like this :<br>[sourcecode]<br><br>jQuery(document).ready(function($) {<br>	$.gaTracker.init("YOUR-UA-ID");<br>}) ;<br>[/sourcecode]<br><br>Firstly, this will init the goggle analytics tracker with your Google Analytics Account ID.<br>Secondly, it will track the current page after ga.js load.<br><br>Track with jQuery binds<br>If you use dynamic navigation in Ajax, you normally already bind clicks on links in order to override standard navigator implementations.<br>To track those clicks with analytics, simply call $.gaTracker, passing the url in parameter, like this :<br>[sourcecode]jQuery(document).ready(function($) {<br>	$('a').bind('click', function(e) {<br>		e.preventDefault() ;<br>		$.gaTracker.track($(this).attr('href')) ;<br>	}) ;<br>}) ;[/sourcecode]<br><br>Download<br>Download jQuery.gatracker.js v1.0 : source code & minified version</div></div><div class="buttons"><div class="download_files"><a href="http://www.web2ajax.fr/examples/jquery.gaTracker.js/jquery.gatracker-v1.0.js.zip" target="_blank" title="Download files Defer Google Analytics Tracking : jquery.gaTracker"><img src="https://s3.amazonaws.com/web2ajax/Web2ajax_v2/img/button_download.png" width="198" height="60"></a></div></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/' rel='bookmark' title='Permanent Link: jQuery : Edit in place plugin'>jQuery : Edit in place plugin</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2008/04/07/graphics-like-google-charts/' rel='bookmark' title='Permanent Link: Graphics like Google Charts !'>Graphics like Google Charts !</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/03/jquery-bind-des-evenements-mouseover-click-key/' rel='bookmark' title='Permanent Link: jQuery : Bind des événements mouseover, click, key&#8230;'>jQuery : Bind des événements mouseover, click, key&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2010/06/10/defer-google-analytics-tracking-jquery-gatracker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to detect visitors language with PHP</title>
		<link>http://www.web2ajax.fr/2010/06/01/how-to-detect-visitors-language-with-php/</link>
		<comments>http://www.web2ajax.fr/2010/06/01/how-to-detect-visitors-language-with-php/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 16:04:55 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Accessibilité]]></category>
		<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[autodetect]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[language]]></category>

		<guid isPermaLink="false">http://www.web2ajax.fr/?p=480</guid>
		<description><![CDATA[I'll show you here how to implement a simple solution to detect and serve content in the visitor language.For this, I use two web domains, one with a '.com' extension and the other in '.fr'But you can either use it as subdomain, like 'fr.website.com' or 'en.website.com'.And third solution, only based on a url param and [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<div class="content">I'll show you here how to implement a simple solution to detect and serve content in the visitor language.<br><br>For this, I use two web domains, one with a '.com' extension and the other in '.fr'<br>But you can either use it as subdomain, like 'fr.website.com' or 'en.website.com'.<br>And third solution, only based on a url param and cookies.<br><br>Let me explains more below..<br><br><br>First to see an example : check at www.delarueguillaume.com.<br><br>How to Implement it ?<br>What you need : <br>The first thing we have to do is to detect the visitor language. For this, I'd find a very simple, but efficiently, PHP class named 'Language' ( from Jonas Raoni Soares Silva ). <br><br>Below, this the code to paste in a new file called "LanguageDetect.php", located in your website directory.<br><br>[sourcecode][/sourcecode]<br><br>Auto Detection<br>1/ Now to detect visitor's language, we have to load the LanguageDetect class file, like that :<br>[sourcecode][/sourcecode]<br><br>2/ Set accepted languages : (for me, French or English)<br>[sourcecode][/sourcecode]<br><br>3/ And finally Retrieve best match, which give :<br>[sourcecode][/sourcecode]<br><br>URL Param : $_GET[lang]<br>If the GET 'lang' param is added to url, like 'www.example.com?lang=fr', we overwrite the auto detection value.<br>It's useful to let visitor choose is language by clicking on country flag by example.<br><br>Our code becomes : <br>[sourcecode][/sourcecode]<br><br>Cookie Store and get preferences<br>To avoid to send each time the GET[lang] param, you can use cookies to store language.<br>[sourcecode][/sourcecode]<br><br>Translation File Linking :<br><br>Basics<br>We'll create a file called 'i18n'. This file will contains translations and a function to return translated output.<br>[sourcecode]</div><div class="buttons"></div>
	<div class="clearfix"></div>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2010/06/01/how-to-detect-visitors-language-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CV en ligne : Recherche emploi sur Paris ou US</title>
		<link>http://www.web2ajax.fr/2010/05/31/cv-en-ligne-recherche-emploi-sur-paris/</link>
		<comments>http://www.web2ajax.fr/2010/05/31/cv-en-ligne-recherche-emploi-sur-paris/#comments</comments>
		<pubDate>Mon, 31 May 2010 15:47:54 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[consultant web]]></category>
		<category><![CDATA[cv en ligne]]></category>
		<category><![CDATA[développeur web]]></category>

		<guid isPermaLink="false">http://www.web2ajax.fr/?p=460</guid>
		<description><![CDATA[Je tenais à vous présenter le site que je viens de mettre en ligne pour présenter mon CV, mon Portfolio et mes expériences. Tout se passe sur : www.delarueguillaume.com Par la même occasion, je profite de ce billet pour vous glisser que je recherche un Job de développeur ou de consultant web sur Paris. Je [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2010/05/31/cv-en-ligne-recherche-emploi-sur-paris/' title='Permanent link to CV en ligne : Recherche emploi sur Paris ou US'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2010/05/Guillaume-DE-LA-RUE-CV-Développeur-Consultant-et-Designer-WEB_1275016057111-244x300.png&w=200' alt='CV en ligne : Recherche emploi sur Paris ou US'  /></a></div>
<div class="content">Je tenais à vous présenter le site que je viens de mettre en ligne pour présenter mon CV, mon Portfolio et mes expériences. <br>Tout se passe sur : www.delarueguillaume.com <br><br>Par la même occasion, je profite de ce billet pour vous glisser que je recherche un Job de développeur ou de consultant web sur Paris. <br><br>Je vais en effet déménager prochainement et je me disais que revenir à l'endroit qui m'avait "professionnalisé" était plutôt une bonne idée. <br>Ce serait également une belle occasion d'offrir mes services à une entreprise dynamique à la recherche de marchés innovants, apprendre toujours et encore.<br><br>Donc si vous êtes à la recherche de quelqu'un comme moi, n'hésitez pas à me contacter ;)<br><br>Pour me contacter : <br>Email : delarueguillaume@gmail.com<br>CV en ligne : http://www.delarueguillaume.com/<br>Portfolio : http://www.delarueguillaume.com/#portfolio<br>Télécharger en PDF : CV_DE-LA-RUE_Guillaume.pdf</div></div><div class="buttons"><div class="go_visit"><a href="http://www.delarueguillaume.com/" target="_blank" title="Visit the cited website in CV en ligne : Recherche emploi sur Paris ou US"><img src="https://s3.amazonaws.com/web2ajax/Web2ajax_v2/img/button_goto.png" width="198" height="60"></a></div></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/10/lavieimmocom-mon-premier-gros-projet-en-ligne/' rel='bookmark' title='Permanent Link: LaVieImmo.com : mon premier gros projet en ligne !'>LaVieImmo.com : mon premier gros projet en ligne !</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2010/06/10/cvdujour-ca-marche-vraiment-bien/' rel='bookmark' title='Permanent Link: @cvdujour : Ca marche vraiment bien !'>@cvdujour : Ca marche vraiment bien !</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2010/05/31/cv-en-ligne-recherche-emploi-sur-paris/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dernier Projet en ligne : MeeT ImmO</title>
		<link>http://www.web2ajax.fr/2010/05/07/dernier-projet-en-ligne-meet-immo/</link>
		<comments>http://www.web2ajax.fr/2010/05/07/dernier-projet-en-ligne-meet-immo/#comments</comments>
		<pubDate>Fri, 07 May 2010 01:48:34 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[agence immobiliere]]></category>
		<category><![CDATA[meet immo]]></category>

		<guid isPermaLink="false">http://www.web2ajax.fr/?p=408</guid>
		<description><![CDATA[Je travaille depuis un bon gros mois sur le projet d'un ami et j'avoue que le résultat est au-delà de nos espérances ! C'est pourquoi je tenais à vous présenter mon travail : www.meetimmo.fr, car on peut dire que je me suis bien laché sur l'utilisation de jQuery, sans oublier d'être SEO friendly and IE [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2010/05/07/dernier-projet-en-ligne-meet-immo/' title='Permanent link to Dernier Projet en ligne : MeeT ImmO'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2010/05/MeeT_ImmO_Screenshot.jpg&w=200' alt='Dernier Projet en ligne : MeeT ImmO'  /></a></div>
<div class="content">Je travaille depuis un bon gros mois sur le projet d'un ami et j'avoue que le résultat est au-delà de nos espérances ! <br>C'est pourquoi je tenais à vous présenter mon travail : www.meetimmo.fr, car on peut dire que je me suis bien laché sur l'utilisation de jQuery, sans oublier d'être SEO friendly and IE compatible (Certainement le plus hardu...) <br><br>Je vous invite à en découvrir un peu plus...<br><br>MeeT ImmO est donc une agence immobilière basée sur Rouen et Paris. <br>Elle se positionne sur un marché dit 'Immobilier de Prestige' et c'est pourquoi nous avions besoin d'un site réellement différent de la concurrence, avec une mise en valeur importante des photo-reportages.<br><br>C'est sur ce principe qu'est né l'interface de MeeT ImmO : une interface quasi plein-écran<br><br>Je vous invite donc à aller voir ce site sans plus tarder et si vous avez la moindre question concernant le développement, je suis prêt à divulguer mes petits secrets de fabrication.<br><br>A noter que les nouveaux bien sont automatiquement publiés vers Twitter et Facebook. Tout ça  connecté au flux RSS FeedBurner... C'est beau quand même la techologie !<br><br>Sur ce, je vais me coucher heureux de mon accouchement ^^<br><br>@+</div></div><div class="buttons"><div class="go_visit"><a href="http://www.meetimmo.fr/" target="_blank" title="Visit the cited website in Dernier Projet en ligne : MeeT ImmO"><img src="https://s3.amazonaws.com/web2ajax/Web2ajax_v2/img/button_goto.png" width="198" height="60"></a></div></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/10/lavieimmocom-mon-premier-gros-projet-en-ligne/' rel='bookmark' title='Permanent Link: LaVieImmo.com : mon premier gros projet en ligne !'>LaVieImmo.com : mon premier gros projet en ligne !</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/' rel='bookmark' title='Permanent Link: jQuery : Edit in place plugin'>jQuery : Edit in place plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2010/05/07/dernier-projet-en-ligne-meet-immo/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress Tips : Hide oldest comments in wordpress with jQuery</title>
		<link>http://www.web2ajax.fr/2010/04/22/how-to-hide-oldest-comments-in-wordpress-with-jquery/</link>
		<comments>http://www.web2ajax.fr/2010/04/22/how-to-hide-oldest-comments-in-wordpress-with-jquery/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 03:17:51 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[comments.php]]></category>
		<category><![CDATA[hide comments]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[wordpress tricks]]></category>

		<guid isPermaLink="false">http://www.web2ajax.fr/?p=384</guid>
		<description><![CDATA[A simple tip for wordpress blogs to hide oldest comments at single load page with jQuery.For this tip, I suppose you already load jQuery JS framework in your blog.In your wordpress theme directory, edit 'comments.php' and add the code below to to the end of the file :[sourcecode] jQuery(document).ready(function() { var $comment = $('#comment_list') ; [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2010/04/22/how-to-hide-oldest-comments-in-wordpress-with-jquery/' title='Permanent link to WordPress Tips : Hide oldest comments in wordpress with jQuery'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2010/04/m8a.png&w=200' alt='WordPress Tips : Hide oldest comments in wordpress with jQuery'  /></a></div>
<div class="content">A simple tip for wordpress blogs to hide oldest comments at single load page with jQuery.<br><br><br>For this tip, I suppose you already load jQuery JS framework in your blog.<br><br>In your wordpress theme directory, edit 'comments.php' and add the code below to to the end of the file :<br><br>[sourcecode]<br><br>	jQuery(document).ready(function() {<br>		<br>		var $comment = $('#comment_list') ;<br>		var $comments = $comment.find('li') ;<br>		var num2display = 8 ; <br>		<br>		// -- Hide all comments except 'num2display' newest<br>		$comments.slice(0, $comments.length - num2display).css({display:'none'}) ;<br>		<br>		// -- Create the 'Show all comments' link<br>		if ( $comments.length > num2display ) {<br>			$show_all = $('<p style="padding: 10px 20px; color:#005f90; font-size: 15px; text-decoration: underline; cursor: pointer; ">Click here to view the '+Math.max(0, $comments.length - num2display) +' other comments...</p>') ;<br>			<br>			// -- Bind click on link<br>			$show_all.click(function() {<br>				$comments.css({display:'block'}) ;<br>				$(this).remove() ;<br>			}) ;<br>			<br>			// -- Insert link to click after comments list<br>			$show_all.insertAfter($comment.find('ul')) ;<br>		}<br>	}) ;<br><br>[/sourcecode]<br><br>Then, at load page, you will only have the 8 newest comments on your post and a link to show others.<br><br>Look at this blog for more examples and have fun with jQuery !</div></div><div class="buttons"></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2008/04/30/wptouch-un-plugin-iphone-pour-wordpress/' rel='bookmark' title='Permanent Link: WPTouch : un plugin iPhone pour WordPress'>WPTouch : un plugin iPhone pour WordPress</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2010/06/10/defer-google-analytics-tracking-jquery-gatracker/' rel='bookmark' title='Permanent Link: Defer Google Analytics Tracking : jquery.gaTracker'>Defer Google Analytics Tracking : jquery.gaTracker</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2010/03/25/jquery-lazyload-ad-defer-advertisement-loading/' rel='bookmark' title='Permanent Link: jQuery LazyLoad Ad : Delays loading of advertising'>jQuery LazyLoad Ad : Delays loading of advertising</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2010/04/22/how-to-hide-oldest-comments-in-wordpress-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery LazyLoad Ad : Delays loading of advertising</title>
		<link>http://www.web2ajax.fr/2010/03/25/jquery-lazyload-ad-defer-advertisement-loading/</link>
		<comments>http://www.web2ajax.fr/2010/03/25/jquery-lazyload-ad-defer-advertisement-loading/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 15:18:46 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[monetize]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[ads defer]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[advertise]]></category>
		<category><![CDATA[advertisement]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[affiliate banners]]></category>
		<category><![CDATA[BlogBang]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Defer document.write]]></category>
		<category><![CDATA[delays loading]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[ebuzzing]]></category>
		<category><![CDATA[lazyload]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[optimize]]></category>
		<category><![CDATA[optimize page load]]></category>
		<category><![CDATA[outside viewport]]></category>
		<category><![CDATA[page load]]></category>
		<category><![CDATA[rotate ads]]></category>
		<category><![CDATA[website optimization]]></category>

		<guid isPermaLink="false">http://www.web2ajax.fr/?p=246</guid>
		<description><![CDATA[jQuery Lazy Load Ad is a jQuery plugin that takes advantage of Lazy Load delaying ads loading. - Highly improve general page load (Ads are displayed after the page load and only inside the viewport) - Compatibility with AdSense and many other advertisers – Cross Browser support (IE5.5+, Firefox, Opera, Chrome, Safari)Gains on my blog [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2010/03/25/jquery-lazyload-ad-defer-advertisement-loading/' title='Permanent link to jQuery LazyLoad Ad : Delays loading of advertising'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2010/03/lazyLoadAd-300x167.png&w=200' alt='jQuery LazyLoad Ad : Delays loading of advertising'  /></a></div>
<div class="content">jQuery Lazy Load Ad is a jQuery plugin that takes advantage of Lazy Load delaying ads loading.<br> - Highly improve general page load (Ads are displayed after the page load and only inside the viewport)<br> - Compatibility with AdSense and many other advertisers<br> – Cross Browser support (IE5.5+, Firefox, Opera, Chrome, Safari)<br><br><br>Gains on my blog : 65% for the page load, and 52% for page weight <br>    -> Without lazy Load Ad : Page loaded in 8.88s (371.98kb)<br>    -> With  : page loaded and accessible in 3.17s (179.18kb)<br><br><br>Big thanks to Mika Tuupola for the Lazy load part<br> -> http://www.appelsiini.net/projects/lazyload<br><br>Another big thanks to FrankT and his document.write overload code<br> -> http://blog.phpbuero.de/?p=26<br><br>To View Demo, simply look at all the ads on web2ajax, they are loaded by Lazy Load Ad.<br>You can either view the full page Demo by clickinh on 'Demo' Button just below to know how to use it on your own website.<br><br><br>INSERT AD CODE<br><br>First, insert placements into your HTML code.<br>For that, you can use a 'div' tag.<br>Apply a specified class, only used for lazyLoad Ad uses, as example 'lazyLoadAd_places'<br>So you have this :<br>[sourcecode]&lt;div class=&quot;lazyLoadAd_places&quot;&gt;&lt;/div&gt;[/sourcecode]<br><br>Now, call the ad publisher code and put it into the div attributes, named as 'original'.<br><br>For example with original BlogBang code :<br>[sourcecode]&lt;div&gt;<br>    &lt;script src=&quot;http://www.blogbang.com/d.php?id=a16a937291&n=1&p=L&o=SLW&w=300&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br>&lt;/div&gt;[/sourcecode]<br><br>Becomes :<br>[sourcecode]&lt;div class=&quot;lazyLoadAd_places&quot; original='http://www.blogbang.com/d.php?id=a16a937291&n=1&p=L&o=SLW&w=300'&gt;&lt;/div&gt;[/sourcecode]<br><br>To finish you can put 'code' tags into the div, code will be evaluated as javascript, just before calling publisher script (look to adsense example).<br>You can put either HTML code, like  tags or image mobile replacements. Degraded content will be replaced by document.write when called.<br><br><br>EXAMPLES<br><br>In your HTML code for adSense:<br>[sourcecode]&lt;div class=&quot;lazyLoadAd_places&quot; original='http://pagead2.googlesyndication.com/pagead/show_ads.js'&gt;<br>    &lt;code&gt;&lt;!--<br>        google_ad_client = 'YOUR_AD_CLIENT_ID';<br>        google_ad_slot = 'YOUR_AD_SLOT';<br>        google_ad_width = 300;<br>        google_ad_height = 250;<br>        //--&gt;<br>    &lt;/code&gt;<br>&lt;/div&gt;<br>[/sourcecode]<br><br><br>In your HTML code for eBuzzing:<br>[sourcecode]&lt;div class=&quot;lazyLoadAd_places&quot; original='http://www.ebuzzing.com/player_blog/player.php?parametre=115660'&gt;&lt;/div&gt;<br>[/sourcecode]<br><br><br>In your HTML code for BlogBang :<br>[sourcecode]&lt;div class=&quot;lazyLoadAd_places&quot; original='http://www.blogbang.com/d.php?id=a16a937291&n=1&p=L&o=SLW&w=300&c=2222222&bg=121212'&gt;<br>    &lt;a href=&quot;http://www.blogbang.com/&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.blogbang.com/s.php&quot; border=&quot;0&quot; alt=&quot;BlogBang&quot;&gt;&lt;/a&gt;<br>&lt;/div&gt;[/sourcecode]<br><br><br>HOW TO CALL LAZY LOAD AD<br><br>Insert the script declarations just before the 'body' endtag.<br><br>After loading the last jQuery version and document is ready, lazyLoad the Ads<br>[sourcecode]    ...<br><br>    &lt;script type=&quot;text/javascript&quot; src=&quot;/assets/js/jquery-1.4.2.min.js&quot;&gt;&lt;/script&gt;<br>    &lt;script type=&quot;text/javascript&quot; src=&quot;/assets/js/jquery.lazyLoadAd.min.js&quot;&gt;&lt;/script&gt;<br>    <br>    &lt;script type=&quot;text/javascript&quot;&gt;<br>    $(document).ready(function() {<br>	<br>        // Load LazyLoad Ad on each dom with classname 'lazyLoadAd_places'<br>        $(&quot;.lazyLoadAd_places&quot;).lazyLoadAd({<br>            threshold: 200,<br>            onComplete: function() {<br>                // -- Pub is displayed !<br>            }<br>        }) ;<br>    }) ;<br>    &lt;/script&gt;<br><br>    ...<br>    &lt;/body&gt;<br>&lt;/html&gt;<br>[/sourcecode]</div></div><div class="buttons"><div class="go_demo"><a href="http://www.web2ajax.fr/examples/jquery.lazyLoadAd.js/" target="_blank" title="Link to demo page of jQuery LazyLoad Ad : Delays loading of advertising"><img src="https://s3.amazonaws.com/web2ajax/Web2ajax_v2/img/button_demo.png" width="198" height="60"></a></div></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2010/06/10/defer-google-analytics-tracking-jquery-gatracker/' rel='bookmark' title='Permanent Link: Defer Google Analytics Tracking : jquery.gaTracker'>Defer Google Analytics Tracking : jquery.gaTracker</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2008/04/16/inserez-des-indicateurs-de-chargement-directement-en-javascript/' rel='bookmark' title='Permanent Link: Insérez des indicateurs de chargement directement en JavaScript !!'>Insérez des indicateurs de chargement directement en JavaScript !!</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2008/03/11/starbox-permettre-a-vos-visiteurs-de-noter-avec-des-etoiles/' rel='bookmark' title='Permanent Link: Starbox, permettre à vos visiteurs de noter avec des étoiles !'>Starbox, permettre à vos visiteurs de noter avec des étoiles !</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2010/03/25/jquery-lazyload-ad-defer-advertisement-loading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog Design on web2ajax !</title>
		<link>http://www.web2ajax.fr/2010/03/19/new-blog-design-on-web2ajax/</link>
		<comments>http://www.web2ajax.fr/2010/03/19/new-blog-design-on-web2ajax/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 15:40:42 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[funky]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.web2ajax.fr/?p=156</guid>
		<description><![CDATA[Web2ajaX has a new face today !!More Funky, more colored, I hope those changes on theme will enjoy your navigation on this blog.Bye and see you for the next episode... Related posts:&#160;Ouverture du Blog !! &#160;WordPress Tips : Hide oldest comments in wordpress with jQuery]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2010/03/19/new-blog-design-on-web2ajax/' title='Permanent link to New Blog Design on web2ajax !'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2010/03/web2ajax_newDesign-177x300.png&w=200' alt='New Blog Design on web2ajax !'  /></a></div>
<div class="content">Web2ajaX has a new face today !!<br><br>More Funky, more colored, I hope those changes on theme will enjoy your navigation on this blog.<br><br>Bye and see you for the next episode...</div></div><div class="buttons"></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2007/08/20/ouverture-du-blog/' rel='bookmark' title='Permanent Link: Ouverture du Blog !!'>Ouverture du Blog !!</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2010/04/22/how-to-hide-oldest-comments-in-wordpress-with-jquery/' rel='bookmark' title='Permanent Link: WordPress Tips : Hide oldest comments in wordpress with jQuery'>WordPress Tips : Hide oldest comments in wordpress with jQuery</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2010/03/19/new-blog-design-on-web2ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Genius Menu &#8211; jQuery plugin Like MacOS Dock Menu Effect</title>
		<link>http://www.web2ajax.fr/2010/03/05/genius-menu-jquery-plugin-like-macos-dock-menu-effect/</link>
		<comments>http://www.web2ajax.fr/2010/03/05/genius-menu-jquery-plugin-like-macos-dock-menu-effect/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 07:27:43 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[audio player]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[dewplayer]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[genius]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[pile]]></category>
		<category><![CDATA[stack]]></category>
		<category><![CDATA[Web2]]></category>

		<guid isPermaLink="false">http://www.web2ajax.fr/?p=96</guid>
		<description><![CDATA[Genius Menu is an highly flexible expand list plugin for jQuery.The Expand style is inspired from MaxOSX Dock Genius Effect.Click on View Demo to look at effect, flexibility and code.Features :- Auto orientation of expand- Highly Customizable- Easily draggable with jQueryUI- Browser support ( IE > 5.5??, FireFox, Safari, Opera ) Related posts:&#160;FaceBook Like &#8211; [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2010/03/05/genius-menu-jquery-plugin-like-macos-dock-menu-effect/' title='Permanent link to Genius Menu &#8211; jQuery plugin Like MacOS Dock Menu Effect'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2010/03/GeniusMenu_screenshot.jpg&w=200' alt='Genius Menu &#8211; jQuery plugin Like MacOS Dock Menu Effect'  /></a></div>
<div class="content">Genius Menu is an highly flexible expand list plugin for jQuery.<br>The Expand style is inspired from MaxOSX Dock Genius Effect.<br><br>Click on View Demo to look at effect, flexibility and code.<br><br>Features :<br>- Auto orientation of expand<br>- Highly Customizable<br>- Easily draggable with jQueryUI<br>- Browser support ( IE > 5.5??, FireFox, Safari, Opera )</div></div><div class="buttons"><div class="go_demo"><a href="http://www.web2ajax.fr/examples/genius_menu/" target="_blank" title="Link to demo page of Genius Menu &#8211; jQuery plugin Like MacOS Dock Menu Effect"><img src="https://s3.amazonaws.com/web2ajax/Web2ajax_v2/img/button_demo.png" width="198" height="60"></a></div></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2008/02/03/facebook-like-jquery-and-autosuggest-search-engine/' rel='bookmark' title='Permanent Link: FaceBook Like &#8211; jQuery and autosuggest Search Engine'>FaceBook Like &#8211; jQuery and autosuggest Search Engine</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2007/08/20/ajax-effet-menu-dock-a-la-macos-x/' rel='bookmark' title='Permanent Link: Ajax : Effet menu &#8216;DOCK&#8217; à la MacOS X'>Ajax : Effet menu &#8216;DOCK&#8217; à la MacOS X</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/' rel='bookmark' title='Permanent Link: jQuery : Edit in place plugin'>jQuery : Edit in place plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2010/03/05/genius-menu-jquery-plugin-like-macos-dock-menu-effect/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Du synchrone asynchrone avec jQuery : jsonp</title>
		<link>http://www.web2ajax.fr/2009/04/30/du-synchrone-asynchrone-avec-jquery-jsonp/</link>
		<comments>http://www.web2ajax.fr/2009/04/30/du-synchrone-asynchrone-avec-jquery-jsonp/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 12:26:40 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[asynchrone]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jsonp]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://web2ajax.fr/?p=59</guid>
		<description><![CDATA[Vous le savez, jQuery est génial, c'est la classe américaine ce truc et cependant, j'avais encore un soucis avec des requetes ajax synchrone qui bloquaient le navigateur le temps du retour de la réponse et quand cette requête est exécutée toutes les 10 secondes et que le browser est bloqué 2s sur les 10s, ça [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<div class="content">Vous le savez, jQuery est génial, c'est la classe américaine ce truc et cependant, j'avais encore un soucis avec des requetes ajax synchrone qui bloquaient le navigateur le temps du retour de la réponse et quand cette requête est exécutée toutes les 10 secondes et que le browser est bloqué 2s sur les 10s, ça le fait pas trop...<br><br>Et bien j'ai la solution et elle se nomme 'jsonp'.<br><br><br>But What is 'jsonp' ? JSONp c'est du json et le 'p' pour 'padding' (formatage). Cette technique est utilisée par de nombreux gros voir très gros comme google, yahoo ou facebook...<br><br>Dans l'idée, celà permet d'effectuer une requete ajax en GET asynchrone (donc ne bloque pas le navigateur) et quand la réponse est disponible, jQuery créait une fonction javascript tempraire (callback) qui sera exécutée en passant le json en paramètre.<br><br>Vous allez voir, c'est dans simplicité angélique :<br><br>1. La requête jQuery :<br><br>[sourcecode language='js']<br>jQuery(document).ready(function() {<br>// To manage ajax req and be able to abort one<br>var ajax_req = {} ;<br><br>// The refresh function<br>var refresh_div = function() {<br>if ( ajax_req.refresh_div ) ajax_req.refresh_div.abort() ;<br>ajax_req.refresh_div = jQuery.ajax({<br>type:      'GET',<br>url:        '/url_to_the_page/',<br>cache:   false,<br>async:   true,<br>dataType: 'jsonp',<br>success: function(data) {<br>// Request is complete and returned a json result<br>console.log(data) ;<br>}<br>});<br>}<br><br>// The updater dameon every 10 seconds<br>if ( timer_d ) clearInterval(timer_d);<br>timer_d = setInterval(function() {<br>refresh_div() ;<br>}, 10000) ;<br>});<br>[/sourcecode]<br><br>2. La page en php qui va recevoir la requete ajax et produire le json<br><br>[sourcecode language='php']<br><br>[/sourcecode]<br><br>distributed raman amplifier3. A ce point, tout est fini ou presque et jQuery fera le reste en exécutant le callback 'success' de la requete ajax.<br><br>Voilou, j'espère avoir pu vous aider quelque peu.<br>Attention tout de même, il vous faut au minimum jquery 1.2.1 et comme je n'ai que des navigateurs à jour, je ne sais pas ce que ça donne sur des navigateurs comme IE6...</div></div><div class="buttons"></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/' rel='bookmark' title='Permanent Link: jQuery : Edit in place plugin'>jQuery : Edit in place plugin</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2008/02/03/facebook-like-jquery-and-autosuggest-search-engine/' rel='bookmark' title='Permanent Link: FaceBook Like &#8211; jQuery and autosuggest Search Engine'>FaceBook Like &#8211; jQuery and autosuggest Search Engine</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2010/06/10/defer-google-analytics-tracking-jquery-gatracker/' rel='bookmark' title='Permanent Link: Defer Google Analytics Tracking : jquery.gaTracker'>Defer Google Analytics Tracking : jquery.gaTracker</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2009/04/30/du-synchrone-asynchrone-avec-jquery-jsonp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recherche Beta Testeurs : boursereflex.com</title>
		<link>http://www.web2ajax.fr/2008/09/05/recherche-beta-testeurs-boursereflexcom/</link>
		<comments>http://www.web2ajax.fr/2008/09/05/recherche-beta-testeurs-boursereflexcom/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 18:14:26 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[bourse]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://web2ajax.fr/?p=48</guid>
		<description><![CDATA[Bonjour tout le monde,&#160;Vous allez vous dire : &#34;il &#233;crit pas beaucoup de billets en ce moment et il recherche des beta testeurs gratos !!&#34;Et bah oui, et pour une raison qui explique largement la premi&#232;re :)&#160;Mon projet secret du moment ne l'ai plus trop puisqu'il va sortir incessement sous peu et donc nous aimerions [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2008/09/05/recherche-beta-testeurs-boursereflexcom/' title='Permanent link to Recherche Beta Testeurs : boursereflex.com'><img src='http://www.web2ajax.fr/thumb.php?i=http://web2ajax.fr/wp-content/uploads/blog_logo.gif&w=200' alt='Recherche Beta Testeurs : boursereflex.com'  /></a></div>
<div class="content"><p>Bonjour tout le monde,</p><p>&nbsp;</p><p>Vous allez vous dire : &quot;il &eacute;crit pas beaucoup de billets en ce moment et il recherche des beta testeurs gratos !!&quot;</p><p>Et bah oui, et pour une raison qui explique largement la premi&egrave;re :)&nbsp;</p><p>Mon projet secret du moment ne l'ai plus trop puisqu'il va sortir incessement sous peu et donc nous aimerions avoir vos avis sur le look&amp;feel et les informations qui y sont pr&eacute;sent&eacute;es.</p><p>Le site s'appelle donc boursereflex.com, un site boursier et financier dont la baseline est &quot;L'argent, vu autrement&quot;.</p><p>Je serais vraiment tr&eacute;s interess&eacute; d'avoir une vingtaine de retours sur ce qui est fait actuellement, donc si &ccedil;a vous interesse postez un petit commentaire &agrave; ce billet, j'aurais ainsi vos emails et je vous contacterais lundi soir pour vous donner les acc&egrave;s.</p><p>D'avance merci pour votre aide les bloggeurs fous !!</p></div></div><div class="buttons"><div class="go_visit"><a href="http://www.boursereflex.com/" target="_blank" title="Visit the cited website in Recherche Beta Testeurs : boursereflex.com"><img src="https://s3.amazonaws.com/web2ajax/Web2ajax_v2/img/button_goto.png" width="198" height="60"></a></div></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/' rel='bookmark' title='Permanent Link: jQuery : Edit in place plugin'>jQuery : Edit in place plugin</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2009/04/30/du-synchrone-asynchrone-avec-jquery-jsonp/' rel='bookmark' title='Permanent Link: Du synchrone asynchrone avec jQuery : jsonp'>Du synchrone asynchrone avec jQuery : jsonp</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2008/09/05/recherche-beta-testeurs-boursereflexcom/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Framework IUI : Lavf.com en version iPhone</title>
		<link>http://www.web2ajax.fr/2008/04/25/iui-lavf-en-version-iphone/</link>
		<comments>http://www.web2ajax.fr/2008/04/25/iui-lavf-en-version-iphone/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 14:39:28 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Accessibilité]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Ajax Mobile]]></category>
		<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[iui]]></category>
		<category><![CDATA[lavf]]></category>

		<guid isPermaLink="false">http://web2ajax.fr/?p=34</guid>
		<description><![CDATA[Chose promise chose dûe :)Je vous avez dit que j'allais tester IUI incessament sous peu le projet IUI à des fins pros et en voici le résultat : http://www.lavf.com/iphone/L'intégration est vraiment très simple et hormis 2-3 modifs maison pour le moteur de recherche et le footer, ce framework pour iPhone est excellent !Gestion du JS [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2008/04/25/iui-lavf-en-version-iphone/' title='Permanent link to Framework IUI : Lavf.com en version iPhone'><img src='http://www.web2ajax.fr/thumb.php?i=http://web2ajax.fr/wp-content/uploads/2008/04/iphone_lavf_copie_beta21.png&w=200' alt='Framework IUI : Lavf.com en version iPhone'  /></a></div>
<div class="content">Chose promise chose dûe :)<br><br>Je vous avez dit que j'allais tester IUI incessament sous peu le projet IUI à des fins pros et en voici le résultat : http://www.lavf.com/iphone/<br><br>L'intégration est vraiment très simple et hormis 2-3 modifs maison pour le moteur de recherche et le footer, ce framework pour iPhone est excellent !<br><br>Gestion du JS et de l'Ajax efficace, j'ai également découverts les outils css "-webkit' qui sont vraiment très utiles. Une bonne petite expérience !<br><br>Merci Yoni pour m'avoir fait découvrir cette petite chose...<br><br>Maintenant, je vais m'attaquer à la version smartphone mais ça va être beaucoup plus basique... dommage...<br><br>En tout cas, les portes de l'Ajax mobile sont grand ouvertes maintenant pour les boursicoteurs !</div></div><div class="buttons"></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/07/quel-framework-ajax-choisir/' rel='bookmark' title='Permanent Link: Quel framework Ajax choisir ?'>Quel framework Ajax choisir ?</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/' rel='bookmark' title='Permanent Link: jQuery : Edit in place plugin'>jQuery : Edit in place plugin</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2008/02/27/iui-user-interface-library-for-safari/' rel='bookmark' title='Permanent Link: IUI (User Interface Library for Safari )'>IUI (User Interface Library for Safari )</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2008/04/25/iui-lavf-en-version-iphone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FaceBook Like &#8211; jQuery and autosuggest Search Engine</title>
		<link>http://www.web2ajax.fr/2008/02/03/facebook-like-jquery-and-autosuggest-search-engine/</link>
		<comments>http://www.web2ajax.fr/2008/02/03/facebook-like-jquery-and-autosuggest-search-engine/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 16:29:33 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[autosuggest]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[autocomplete jquery]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://web2ajax.fr/2008/02/03/facebook-like-jquery-and-autosuggest-search-engine/</guid>
		<description><![CDATA[FaceBook Autosuggest Like is a powerful jQuery plugin to transform an input field into a real time autocompletion search engine, designed like facebook one.This plugin require jQuery libs and the autocompletion plugin 'Bsn Autosuggest".On custom side, make an ajax request and build search plugins to categorize your results.Features : - Autocomplete and ajax support - [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2008/02/03/facebook-like-jquery-and-autosuggest-search-engine/' title='Permanent link to FaceBook Like &#8211; jQuery and autosuggest Search Engine'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2008/02/facebook_searchengine.png&w=200' alt='FaceBook Like &#8211; jQuery and autosuggest Search Engine'  /></a></div>
<div class="content">FaceBook Autosuggest Like is a powerful jQuery plugin to transform an input field into a real time autocompletion search engine, designed like facebook one.<br><br>This plugin require jQuery libs and the autocompletion plugin 'Bsn Autosuggest".<br><br>On custom side, make an ajax request and build search plugins to categorize your results.<br><br>Features : <br>- Autocomplete and ajax support <br>- Database search <br>- Support search plugins <br>- Support cache <br>- Cross Browser support ( IE > 5.5, FireFox, Safari, Opera ) <br><br>I let u see the demo...<br>Have Fun !</div></div><div class="buttons"><div class="go_demo"><a href="http://www.web2ajax.fr/examples/facebook_searchengine/" target="_blank" title="Link to demo page of FaceBook Like &#8211; jQuery and autosuggest Search Engine"><img src="https://s3.amazonaws.com/web2ajax/Web2ajax_v2/img/button_demo.png" width="198" height="60"></a></div></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2010/03/05/genius-menu-jquery-plugin-like-macos-dock-menu-effect/' rel='bookmark' title='Permanent Link: Genius Menu &#8211; jQuery plugin Like MacOS Dock Menu Effect'>Genius Menu &#8211; jQuery plugin Like MacOS Dock Menu Effect</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2008/04/16/inserez-des-indicateurs-de-chargement-directement-en-javascript/' rel='bookmark' title='Permanent Link: Insérez des indicateurs de chargement directement en JavaScript !!'>Insérez des indicateurs de chargement directement en JavaScript !!</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/' rel='bookmark' title='Permanent Link: jQuery : Edit in place plugin'>jQuery : Edit in place plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2008/02/03/facebook-like-jquery-and-autosuggest-search-engine/feed/</wfw:commentRss>
		<slash:comments>168</slash:comments>
		</item>
		<item>
		<title>jQuery : Edit in place plugin</title>
		<link>http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/</link>
		<comments>http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 16:47:15 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Accessibilité]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/</guid>
		<description><![CDATA[Avant toute chose : cet outil est magique !!Le site que je suis en train de faire est un framework maison qui me permet entre autre de faire un site multilingue. Et c'est en ces moments que le EditInPlace prend tout sons sens : plutot que de passer par une interface d'admin pour traduire et [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<div class="content">Avant toute chose : cet outil est magique !!<br><br>Le site que je suis en train de faire est un framework maison qui me permet entre autre de faire un site multilingue. Et c'est en ces moments que le EditInPlace prend tout sons sens : plutot que de passer par une interface d'admin pour traduire et déclarer une variable de langue une à une, je peux faire ça en live sur le site !<br><br>Pour ce qui est du plugin, tout se trouve sur le site : http://code.google.com/p/jquery-in-place-editor/<br><br>Quand à sa mise en place, c'est on ne peut plus facile :<br><br>1/ Tout ce qui est éditable est entouré de :<br>[sourcecode]<br>echo &quot;&lt;span class='editInPlace_i18n' id='lang__$var'&gt;$var&lt;/span&gt;&quot;;<br>[/sourcecode]<br><br>2/ On applique le EditInPlace sur tous les éléments que l'on souhaite pouvoir éditer :<br>[sourcecode]<br>$(document).ready(function(){<br> $(&quot;.editInPlace_i18n&quot;).editInPlace({<br> url: &quot;index.php?module=core_admin&amp;amp;amp;action=update_i18n&quot;,<br> bg_over: &quot;transparent&quot;,<br> value_required: true,<br> params: &quot;ajax=yes&quot;<br> });<br>});<br>[/sourcecode]<br><br>3/ Mon action update_i18n récupère les données en POST et fait un update en base :<br>[sourcecode]<br>#@ Update lang var in DB<br>// Default lang<br>$def_lang = 'fr' ;<br><br>// Get var to update<br>$var_update = str_replace('lang__', '', $_POST['element_id']) ;<br><br>// Do update &amp;amp;amp; write new text<br>if ( set_lang($var_update, $def_lang, $_POST['update_value']) ) {<br>echo $_POST['update_value'] ;<br>} else {<br>echo $_POST['original_html'] ;<br>}<br>[/sourcecode]<br><br>4/ Pour éditer les liens tranquillement, il faut également 'unbinder' tous les liens ', pour ça, il suffit d'ajouter :<br>[sourcecode]<br>$(&quot;a&quot;).unbind().bind(&quot;click&quot;, function(e) { e.preventDefault();} ) ;<br>[/sourcecode]<br><br>Je me sers d'une variable de session et d'un champ caché accessible par Javascript pour mettre à 'On' ou 'Off' le mode d'édition.<br><br>Bien sur, ce sera à adapter à votre environnement, mais tout est très bien expliqué sur le lien plus haut.<br><br>Vous savez tout maintenant, alors bon EditInPlace à tous !!</div></div><div class="buttons"><div class="go_demo"><a href="http://davehauenstein.com/code/jquery-edit-in-place/example/" target="_blank" title="Link to demo page of jQuery : Edit in place plugin"><img src="https://s3.amazonaws.com/web2ajax/Web2ajax_v2/img/button_demo.png" width="198" height="60"></a></div></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2008/02/29/validation-plugin-jquery-ou-scriptaculous/' rel='bookmark' title='Permanent Link: Validation plugin (Jquery OU Scriptaculous ?)'>Validation plugin (Jquery OU Scriptaculous ?)</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/30/jquery-rounded-corners-plugin/' rel='bookmark' title='Permanent Link: jQuery : Rounded corners plugin'>jQuery : Rounded corners plugin</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/26/jquery-raffraichir-un-div-periodiquement/' rel='bookmark' title='Permanent Link: jQuery : Raffraichir un Div périodiquement !'>jQuery : Raffraichir un Div périodiquement !</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>jQuery : Raffraichir un Div périodiquement !</title>
		<link>http://www.web2ajax.fr/2007/09/26/jquery-raffraichir-un-div-periodiquement/</link>
		<comments>http://www.web2ajax.fr/2007/09/26/jquery-raffraichir-un-div-periodiquement/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 12:55:27 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[load()]]></category>
		<category><![CDATA[refresh]]></category>
		<category><![CDATA[setinterval]]></category>

		<guid isPermaLink="false">http://web2ajax.fr/2007/09/26/jquery-raffraichir-un-div-periodiquement/</guid>
		<description><![CDATA[Je cherchais depuis hier soir un plugin jQuery qui puisse me permettre de raffraichir le code html d'une DIV a intervalle régulier pour un module de news et Ô, désespoir : celui-ci n'existait pas !Donc Bibi, comme il en avait besoin et qu'il aime bien l'esprit communautaire, bah il a commencé à créer ce plugin [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<div class="content">Je cherchais depuis hier soir un plugin jQuery qui puisse me permettre de raffraichir le code html d'une DIV a intervalle régulier pour un module de news et Ô, désespoir : celui-ci n'existait pas !<br><br>Donc Bibi, comme il en avait besoin et qu'il aime bien l'esprit communautaire, bah il a commencé à créer ce plugin pour sa bibine, et aussi et surtout à partager ce plugin à toute la communauté.<br><br>Pour le plugin jQuery "jQuery.refreshDiv.js" :<br><br>[sourcecode]<br>/*<br>*    jquery.refreshDiv 1.0 - 2007-09-26<br>*<br>*    All the new stuff written by Guillaume DE LA RUE (www.web2ajax.fr)<br>*    Feel free to do whatever you want with this file<br>*<br>*/<br><br>(function($) {<br>$.refreshDiv = function(source, url, interval_ms) {<br>return setInterval(<br>function() {<br>return $(source).load(url) ;<br>}, interval_ms );<br>}<br><br>$.fn.refreshDiv = function(url, interval_ms) {<br>if (!url) return;<br>this.each(function() {<br>new $.refreshDiv(this, url, interval_ms);<br>});<br>return this;<br>};<br>})(jQuery);<br>[/sourcecode]<br><br>Et pour raffraichir un DIv :<br><br>[sourcecode]<br>jQuery(document).ready(function() {<br>// Refresh news div every 3000 sec<br>$('#news_panel').refreshDiv('/Actualites/module.html', 3*60*1000) ;<br>});<br>[/sourcecode]<br><br>Testez le et dites moi si c'est bon pour vous que je le mette directement sur le site officiel de jQuery !</div></div><div class="buttons"><div class="download_files"><a href="http://web2ajax.fr/wp-content/uploads/2007/09/jqueryrefreshdiv.js" target="_blank" title="Download files jQuery : Raffraichir un Div périodiquement !"><img src="https://s3.amazonaws.com/web2ajax/Web2ajax_v2/img/button_download.png" width="198" height="60"></a></div></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/' rel='bookmark' title='Permanent Link: jQuery : Edit in place plugin'>jQuery : Edit in place plugin</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2008/02/29/validation-plugin-jquery-ou-scriptaculous/' rel='bookmark' title='Permanent Link: Validation plugin (Jquery OU Scriptaculous ?)'>Validation plugin (Jquery OU Scriptaculous ?)</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2008/04/16/inserez-des-indicateurs-de-chargement-directement-en-javascript/' rel='bookmark' title='Permanent Link: Insérez des indicateurs de chargement directement en JavaScript !!'>Insérez des indicateurs de chargement directement en JavaScript !!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2007/09/26/jquery-raffraichir-un-div-periodiquement/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>LaVieImmo.com : mon premier gros projet en ligne !</title>
		<link>http://www.web2ajax.fr/2007/09/10/lavieimmocom-mon-premier-gros-projet-en-ligne/</link>
		<comments>http://www.web2ajax.fr/2007/09/10/lavieimmocom-mon-premier-gros-projet-en-ligne/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 21:46:28 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Scriptaculous]]></category>

		<guid isPermaLink="false">http://web2ajax.fr/2007/09/10/lavieimmocom-mon-premier-gros-projet-en-ligne/</guid>
		<description><![CDATA[C'est avec une grande fiert&#233; (et aussi des ptis yeux), que j'ai mis mon premier site pro en ligne cet apr&#232;s-midi !Le site www.lavieimmo.com rassemble plusieurs services in&#233;dits : d&#233;pot d'annonces immobili&#232;res gratuites, cinq &#224; six actualit&#233;s &#233;crites par nos journalistes, des donn&#233;es de prix ville par ville, getsion d'un portefeuille immobilier, donn&#233;es statistiques INSEE, [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2007/09/10/lavieimmocom-mon-premier-gros-projet-en-ligne/' title='Permanent link to LaVieImmo.com : mon premier gros projet en ligne !'><img src='http://www.web2ajax.fr/thumb.php?i=http://web2ajax.fr/wp-content/uploads/image/logo_shaded_v1_0.gif&w=200' alt='LaVieImmo.com : mon premier gros projet en ligne !'  /></a></div>
<div class="content"><p>C'est avec une grande fiert&eacute; (et aussi des ptis yeux), que j'ai mis mon premier site pro en ligne cet apr&egrave;s-midi !</p><p>Le site www.lavieimmo.com rassemble plusieurs services in&eacute;dits : d&eacute;pot d'annonces immobili&egrave;res gratuites, cinq &agrave; six actualit&eacute;s &eacute;crites par nos journalistes, des donn&eacute;es de prix ville par ville, getsion d'un portefeuille immobilier, donn&eacute;es statistiques INSEE, guides immobiler...</p><p>Dites-moi ce que vous en pensez mais en tout cas, &ccedil;a fait plaisir de voir son petit b&eacute;b&eacute; en ligne ;)</p></div></div><div class="buttons"></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2010/05/07/dernier-projet-en-ligne-meet-immo/' rel='bookmark' title='Permanent Link: Dernier Projet en ligne : MeeT ImmO'>Dernier Projet en ligne : MeeT ImmO</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2010/05/31/cv-en-ligne-recherche-emploi-sur-paris/' rel='bookmark' title='Permanent Link: CV en ligne : Recherche emploi sur Paris ou US'>CV en ligne : Recherche emploi sur Paris ou US</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2007/09/10/lavieimmocom-mon-premier-gros-projet-en-ligne/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ouverture du Blog !!</title>
		<link>http://www.web2ajax.fr/2007/08/20/ouverture-du-blog/</link>
		<comments>http://www.web2ajax.fr/2007/08/20/ouverture-du-blog/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 15:25:48 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[ouverture]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://start5g.ovh.net/~webajax/2007/08/20/ouverture-du-blog/</guid>
		<description><![CDATA[Développeur de profession et avant tout accro aux nouvelles technologies du web, j'ai décidé d'ouvrir www.web2ajax.fr afin de vous faire partager mes lectures, trouvailles et expériences personnelles. Parce qu'il serait prétentieux de vous dire que toute l'actualité du web2.0 passera par Web2Ajax.fr, je souhaite en tout cas faire en sorte que ce site devienne incontournable [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2007/08/20/ouverture-du-blog/' title='Permanent link to Ouverture du Blog !!'><img src='http://www.web2ajax.fr/thumb.php?i=http://start5g.ovh.net/~webajax/usr_files/blog/3.1_logoGraphic.gif&w=200' alt='Ouverture du Blog !!'  /></a></div>
<div class="content">Développeur de profession et avant tout accro aux nouvelles technologies du web, j'ai décidé d'ouvrir www.web2ajax.fr afin de vous faire partager mes lectures, trouvailles et expériences personnelles. <br><br>Parce qu'il  serait prétentieux de vous dire que toute l'actualité du web2.0 passera par Web2Ajax.fr, je souhaite en tout cas faire en sorte que ce site devienne incontournable et une aide précieuse pour les développeurs.  Alors à très bientôt et n'hésitez pas à repasser dans le coin et participer aux sujets.</div></div><div class="buttons"></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/26/jquery-edit-in-place-plugin/' rel='bookmark' title='Permanent Link: jQuery : Edit in place plugin'>jQuery : Edit in place plugin</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2010/03/19/new-blog-design-on-web2ajax/' rel='bookmark' title='Permanent Link: New Blog Design on web2ajax !'>New Blog Design on web2ajax !</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2007/09/30/jquery-rounded-corners-plugin/' rel='bookmark' title='Permanent Link: jQuery : Rounded corners plugin'>jQuery : Rounded corners plugin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2007/08/20/ouverture-du-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 14.571 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-29 22:52:43 -->
