<?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>Le Blog De Nidhal RJAIBI @ Chef De Projet (Web &#38; Logiciels) &#187; JavaScript</title>
	<atom:link href="http://nidhal.tunisium.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://nidhal.tunisium.com</link>
	<description>Le jour où j&#039;aurai tout donné, Que mes claviers seront usés, D&#039;avoir osé, Toujours vouloir tout essayer...</description>
	<lastBuildDate>Mon, 05 Jul 2010 20:48:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Affichage d&#8217;une miniature d&#8217;un document pdf sur une page Web</title>
		<link>http://nidhal.tunisium.com/je-suis-informaticien/affichage-dune-miniature-dun-document-pdf-sur-une-page-web/</link>
		<comments>http://nidhal.tunisium.com/je-suis-informaticien/affichage-dune-miniature-dun-document-pdf-sur-une-page-web/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 13:22:09 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Je suis informaticien !]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.wanrj.com/?p=177</guid>
		<description><![CDATA[Pour pouvoir afficher une miniature d&#8217;un document pdf sur une page Web, il suffit d&#8217;ouvrir un pop-up et d&#8217;appler l&#8217;url de votre document pdf de cette manière. Par contre un plugin pour lire le pdf doit être installé sur votre pc et configuré pour votre navigateur (comme Adobe Reader)
La fonction Javascript
&#60;script type=&#8217;text/javascript&#8217;&#62;
function popup(l,h,url) {
hauteur=Math.round((screen.availHeight-h)/2);
largeur=Math.round((screen.availWidth-l)/2);
return window.open( [...]]]></description>
		<wfw:commentRss>http://nidhal.tunisium.com/je-suis-informaticien/affichage-dune-miniature-dun-document-pdf-sur-une-page-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quelques fonctions javascript</title>
		<link>http://nidhal.tunisium.com/je-suis-informaticien/quelques-fonctions-javascript/</link>
		<comments>http://nidhal.tunisium.com/je-suis-informaticien/quelques-fonctions-javascript/#comments</comments>
		<pubDate>Thu, 06 Sep 2007 14:55:08 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Je suis informaticien !]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.wanrj.com/blog/informatique/javascript/quelques-fonctions-javascript/</guid>
		<description><![CDATA[
//cette fonction permet de v&#233;rifier si un email est validefunction VerifierEmail(adresse){&#160;&#160;&#160; var place = adresse.indexOf(&#34;@&#34;,1);&#160;&#160;&#160; var point = adresse.indexOf(&#34;.&#34;,place+1);&#160;&#160;&#160; if ((place &#62; -1)&#38;&#38;(adresse.length &#62;2)&#38;&#38;(point &#62; 1))&#160;&#160;&#160; &#160;&#160;&#160; return(true);&#160;&#160;&#160; else&#160;&#160;&#160; &#160;&#160;&#160; return(false);}


&#160;

]]></description>
		<wfw:commentRss>http://nidhal.tunisium.com/je-suis-informaticien/quelques-fonctions-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mise en place d&#8217;un menu défilant</title>
		<link>http://nidhal.tunisium.com/je-suis-informaticien/mise-en-place-dun-menu-defilant/</link>
		<comments>http://nidhal.tunisium.com/je-suis-informaticien/mise-en-place-dun-menu-defilant/#comments</comments>
		<pubDate>Tue, 22 May 2007 15:33:53 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Je suis informaticien !]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://wanrj.com/blog/?p=19</guid>
		<description><![CDATA[Pour ajouter un menu d&#233;filant dans une page Web :
&#60;?xml version=&#34;1.0&#34; encoding=&#34;iso-8859-1&#34;?&#62;
&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;
&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62;
&#60;head&#62;
&#60;script language=&#34;javascript&#34; type=&#34;text/javascript&#34;&#62;
var active;function init(){		var myElement = document.getElementById(1);		myElement.style.display = &#34;block&#34;;		active=myElement;	}
	function swapLayer(objMenu) {		var myElement = document.getElementById(objMenu);		if (myElement.style.display == &#34;none&#34;) {
			active.style.display = &#34;none&#34;;			myElement.style.display = &#34;block&#34;;			active =myElement;			}	else {		myElement.style.display = &#34;none&#34;;		}	}	&#60;/script&#62;
&#60;/head&#62;
&#60;body onload=&#34;init();&#34;&#62;
&#60;div&#62;
&#160;&#160;&#160; &#60;a href=&#34;javascript:void(0);&#34; onclick=&#34;swapLayer(0);&#34;&#62; Menu 1&#60;/a&#62;
&#160;&#160;&#160; &#60;div id=&#34;0&#34; style=&#34;margin: [...]]]></description>
		<wfw:commentRss>http://nidhal.tunisium.com/je-suis-informaticien/mise-en-place-dun-menu-defilant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
