<?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; Google</title>
	<atom:link href="http://www.web2ajax.fr/tag/google/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>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>Graphics like Google Charts !</title>
		<link>http://www.web2ajax.fr/2008/04/07/graphics-like-google-charts/</link>
		<comments>http://www.web2ajax.fr/2008/04/07/graphics-like-google-charts/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 12:11:48 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[graphique]]></category>

		<guid isPermaLink="false">http://web2ajax.fr/2008/04/07/graphics-like-google-charts/</guid>
		<description><![CDATA[Un petit bout de script qui devrait ravir ceux qui adorent les graphs.Et oui, voici un outil qui devrait en surprendre plus d'un, permettant de dessiner de beaux graphiques en flash ou direct en gif avec une particularité tout de même : ils ont de la gueule ! No related posts.]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2008/04/07/graphics-like-google-charts/' title='Permanent link to Graphics like Google Charts !'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2008/04/piwik-e280ba-web-analytics-reports7-300x177.png&w=200' alt='Graphics like Google Charts !'  /></a></div>
<div class="content">Un petit bout de script qui devrait ravir ceux qui adorent les graphs.<br><br>Et oui, voici un outil qui devrait en surprendre plus d'un, permettant de dessiner de beaux graphiques en flash ou direct en gif avec une particularité tout de même : ils ont de la gueule !</div></div><div class="buttons"><div class="go_demo"><a href="http://piwik.org/demo/" target="_blank" title="Link to demo page of Graphics like Google Charts !"><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>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2008/04/07/graphics-like-google-charts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comment référencer son site avant son lancement ?</title>
		<link>http://www.web2ajax.fr/2007/08/23/comment-referencer-son-site-avant-son-lancement/</link>
		<comments>http://www.web2ajax.fr/2007/08/23/comment-referencer-son-site-avant-son-lancement/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 19:57:41 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Référencement]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://web2ajax.fr/2007/08/23/comment-referencer-son-site-avant-son-lancement/</guid>
		<description><![CDATA[Et ouais, ça peut-être interessant de référencer son nouveau site avant mise en ligne !Généralement on fait ça au moment où tout est prêt et les débuts sont assez difficiles... (Pourquoi ce post n'est pas paru 1 mois avant ?... ;))Allé, bonne lecture et n'hésitez pas à commenter votre expérience : http://www.arkantos-consulting.com/ No related posts.]]></description>
			<content:encoded><![CDATA[<div class="entry">
<div class="content">Et ouais, ça peut-être interessant de référencer son nouveau site avant mise en ligne !<br><br>Généralement on fait ça au moment où tout est prêt et les débuts sont assez difficiles... (Pourquoi ce post n'est pas paru 1 mois avant ?... ;))<br><br>Allé, bonne lecture et n'hésitez pas à commenter votre expérience : http://www.arkantos-consulting.com/</div></div><div class="buttons"><div class="go_visit"><a href="http://www.arkantos-consulting.com/" target="_blank" title="Visit the cited website in Comment référencer son site avant son lancement ?"><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>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2007/08/23/comment-referencer-son-site-avant-son-lancement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 5.760 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-29 23:00:14 -->
