<?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>internet explorer &#8211; Kodono</title>
	<atom:link href="https://blog.kodono.info/wordpress/tag/internet-explorer/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.kodono.info/wordpress</link>
	<description>Pour tous les technophiles</description>
	<lastBuildDate>Thu, 07 Feb 2019 09:22:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>
	<item>
		<title>Invisible character with IE when using Intl.DateTimeFormat</title>
		<link>https://blog.kodono.info/wordpress/2019/02/07/invisible-character-with-ie-when-using-intl-datetimeformat/</link>
					<comments>https://blog.kodono.info/wordpress/2019/02/07/invisible-character-with-ie-when-using-intl-datetimeformat/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Thu, 07 Feb 2019 09:22:26 +0000</pubDate>
				<category><![CDATA[Astuce]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Navigateur]]></category>
		<category><![CDATA[Niveau débutant]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[internet explorer]]></category>
		<guid isPermaLink="false">https://blog.kodono.info/wordpress/?p=1935</guid>

					<description><![CDATA[As explained in some threads, Internet Explorer adds some invisible extra characters when returning a date from the JavaScript function new Intl.DateTimeformat. var day = "Thursday"; var intlDay = new Intl.DateTimeFormat('en-US', {weekday:"long"}).format(new Date(2019,1,7)); console.log(day === intlDay); // return FALSE with IE intlDay = intlDay.replace(/\u200E/g, ''); // replace \u200E console.log(day === intlDay); // return TRUE with [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>As explained in some <a href="https://stackoverflow.com/questions/33510440/tolocaledatestring-in-ie-returns-a-14-character-string-is-it-a-bug">threads</a>, Internet Explorer adds some invisible extra characters when returning a date from the JavaScript function <code>new Intl.DateTimeformat</code>.</p>
<pre class="brush:javascript">
var day = "Thursday";
var intlDay = new Intl.DateTimeFormat('en-US', {weekday:"long"}).format(new Date(2019,1,7));
console.log(day === intlDay); // return FALSE with IE
intlDay = intlDay.replace(/\u200E/g, ''); // replace \u200E
console.log(day === intlDay); // return TRUE with IE
</pre>
<p>The trick is to replace <code>\u200E</code> in the returned string.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2019/02/07/invisible-character-with-ie-when-using-intl-datetimeformat/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Create a self-signed certificate for localhost testing with IE11 and Webpack</title>
		<link>https://blog.kodono.info/wordpress/2018/08/23/create-a-self-signed-certificate-for-localhost-testing-with-ie11-and-webpack/</link>
					<comments>https://blog.kodono.info/wordpress/2018/08/23/create-a-self-signed-certificate-for-localhost-testing-with-ie11-and-webpack/#comments</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Thu, 23 Aug 2018 10:41:50 +0000</pubDate>
				<category><![CDATA[Astuce]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Niveau expert]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[internet explorer]]></category>
		<guid isPermaLink="false">https://blog.kodono.info/wordpress/?p=1912</guid>

					<description><![CDATA[Sources: https://stackoverflow.com/questions/44988163/create-self-signed-certificate-for-testing-localhost-and-have-it-accepted-by-the http://woshub.com/how-to-create-self-signed-certificate-with-powershell/ https://stackoverflow.com/questions/4691699/how-to-convert-crt-to-pem/4691749#4691749 https://webpack.js.org/configuration/dev-server/#devserver-https If you develop with Webpack under Windows and you want to open your localhost server in HTTPS with IE11 you may receive a message like : &#8220;Content was blocked because it was not signed by a valid security certificate.&#8221; Below I explain the steps to make it work with IE11: [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Sources: </p>
<ul>
<li><a href="https://stackoverflow.com/questions/44988163/create-self-signed-certificate-for-testing-localhost-and-have-it-accepted-by-the">https://stackoverflow.com/questions/44988163/create-self-signed-certificate-for-testing-localhost-and-have-it-accepted-by-the</a></li>
<li><a href="http://woshub.com/how-to-create-self-signed-certificate-with-powershell/">http://woshub.com/how-to-create-self-signed-certificate-with-powershell/</a></li>
<li><a href="https://stackoverflow.com/questions/4691699/how-to-convert-crt-to-pem/4691749#4691749">https://stackoverflow.com/questions/4691699/how-to-convert-crt-to-pem/4691749#4691749</a></li>
<li><a href="https://webpack.js.org/configuration/dev-server/#devserver-https">https://webpack.js.org/configuration/dev-server/#devserver-https</a></li>
</ul>
<p>If you develop with Webpack under Windows and you want to open your localhost server in HTTPS with IE11 you may receive a message like :</p>
<blockquote><p>&#8220;Content was blocked because it was not signed by a valid security certificate.&#8221;</p></blockquote>
<p>Below I explain the steps to make it work with IE11:</p>
<ol>
<li>Open <strong>Powershell in Administrator mode</strong></li>
<li>Type (no need to change anything, just copy/paste):
<pre class="brush:bash">New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname localhost -FriendlyName "Dev localhost" -NotAfter (Get-Date).AddMonths(240) -TextExtension @("2.5.29.37={text}1.3.6.1.5.5.7.3.1")</pre>
<p>It should return a <strong>Thumbprint</strong>:</p>
<pre class="brush:bash">   PSParentPath: Microsoft.PowerShell.Security\Certificate::LocalMachine\my

Thumbprint                                Subject
----------                                -------
1D97DFF290FBACE0871F16AD1B38172F253CA048  CN=localhost</pre>
<p>You may want to open <code>certlm.msc</code> to see the new certificate in Personal</li>
<li><strong>Export to .cer</strong> with the below Powershell command (make sure to <strong>replace</strong> <code>1D97DFF290FBACE0871F16AD1B38172F253CA048</code> with the <strong>Thumbprint</strong> you received before)&#8230; it will be exported to <code>C:\localhost.cert</code> (but you can change the path):
<pre class="brush:bash">Export-Certificate -Cert Cert:\LocalMachine\My\1D97DFF290FBACE0871F16AD1B38172F253CA048 -FilePath C:\localhost.cer (example: Export-Certificate -Cert Cert:\LocalMachine\My\PREVIOUS_Thumbprint_HERE -FilePath C:\localhost.cer)</pre>
</li>
<li>We now need to <strong>export to .pfx</strong> with the below Powershell commands:
<pre class="brush:bash">
$CertPassword = ConvertTo-SecureString -String "YourPassword" -Force –AsPlainText
Export-PfxCertificate -Cert cert:\LocalMachine\My\2779C7928D055B21AAA0Cfe2F6BE1A5C2CA83B30 -FilePath C:\localhost.pfx -Password $CertPassword
</pre>
</li>
<li>Next we&#8217;ll use the opensource application called <strong>XCA</strong>: <a href="https://hohnstaedt.de/xca/">download</a> and install it.</li>
<li>Open XCA and go to : <code>File > New Database</code></li>
<li>Choose where you want to have this database and provide a password (to make it easy, you can choose the same &#8220;YourPassword&#8221; than before)</li>
<li>Go to tab <strong>Certificates</strong></li>
<li>Click <strong>Import</strong> and select the previous created <strong>localhost.cer</strong></li>
<li>Once imported, right click the cert and <strong>Export > File</strong>, then <strong>select &#8220;*.crt&#8221;</strong> for the file format</li>
<li>Go to the <strong>Private Keys</strong> tab and click on <strong>Import PFX</strong></li>
<li>Select the previously created PFX and click <strong>Import All</strong></li>
<li>Right click on &#8220;localhost_key&#8221; and <strong>Export > File</strong>, then <strong>select &#8220;PEM Private (*.pem)&#8221;</strong> for the file format</li>
<li>Close XCA and go to the folder with all your files</li>
<li>Double-click on the file <code>localhost.crt</code> you have just created</li>
<li>Windows shows a popup with a <code>"Install Certificate..."</code> button; Click on this button</li>
<li>Choose Current User, and next, click on <strong>&#8220;Place all certificates in the following store&#8221;</strong>, and browse to <strong>&#8220;Trusted Root Certification Authorities&#8221;</strong></li>
<li>Finally, in your Webpack config, you should enter something like the below:
<pre class="brush:javascript">
module.exports = {
  //...
  devServer: {
    https: {
      key: fs.readFileSync('C:\\localhost.pem'),
      cert: fs.readFileSync('C:\\localhost.crt')
    }
  }
};
</pre>
</li>
</ol>
<p>Launch your webpack server and open IE to your localhost server. It should work&#8230;</p>
<p>If you need to do <strong>CORS request</strong>, you may need to open <strong>IE settings</strong>, then go to <strong>Security</strong> and make sure to add localhost in the <strong>Local Intranet/Trusted Sites</strong>, then click on <strong>&#8220;Custom Level&#8230;&#8221;</strong>, go to <strong>&#8220;Miscellaneous&#8221;</strong> and select &#8220;Enable&#8221; for <strong>&#8220;Access data sources across domains&#8221;</strong>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2018/08/23/create-a-self-signed-certificate-for-localhost-testing-with-ie11-and-webpack/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>http://www.iegallery.com/addonsie7/ is returned when trying to change the default search engine for Internet Explorer</title>
		<link>https://blog.kodono.info/wordpress/2015/12/28/httpwww-iegallery-comaddonsie7-is-returned-when-trying-to-change-the-default-search-engine-for-internet-explorer/</link>
					<comments>https://blog.kodono.info/wordpress/2015/12/28/httpwww-iegallery-comaddonsie7-is-returned-when-trying-to-change-the-default-search-engine-for-internet-explorer/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Mon, 28 Dec 2015 09:45:52 +0000</pubDate>
				<category><![CDATA[Astuce]]></category>
		<category><![CDATA[Navigateur]]></category>
		<category><![CDATA[Niveau débutant]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[internet explorer]]></category>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=1582</guid>

					<description><![CDATA[I have IE11 on my pro laptop, with Bing, while I want to use Google as my default search engine. However it keeps returning me the page http://www.iegallery.com/addonsie7/ with no way to install another search provider&#8230; After looking for a solution, I found you can use the direct link http://www.iegallery.com/addonsie7/Detail?resourceId=13555 to be able to install [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I have IE11 on my pro laptop, with Bing, while I want to use Google as my default search engine. However it keeps returning me the page <a href="http://www.iegallery.com/addonsie7/">http://www.iegallery.com/addonsie7/</a> with no way to install another search provider&#8230;</p>
<p>After looking for a solution, I found you can use the direct link <a href="http://www.iegallery.com/addonsie7/Detail?resourceId=13555">http://www.iegallery.com/addonsie7/Detail?resourceId=13555</a> to be able to install Google on Internet Explorer.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2015/12/28/httpwww-iegallery-comaddonsie7-is-returned-when-trying-to-change-the-default-search-engine-for-internet-explorer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Sharepoint 2010 and IE in standard mode (issues with IE9/IE10)</title>
		<link>https://blog.kodono.info/wordpress/2013/03/20/sharepoint-2010-and-ie-in-standard-mode-issues-with-ie9ie10/</link>
					<comments>https://blog.kodono.info/wordpress/2013/03/20/sharepoint-2010-and-ie-in-standard-mode-issues-with-ie9ie10/#comments</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Wed, 20 Mar 2013 15:34:33 +0000</pubDate>
				<category><![CDATA[Niveau intermédiaire]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[sharepoint 2010]]></category>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=1208</guid>

					<description><![CDATA[I wanted to have a masterpage for Sharepoint 2010 with a HTML5 Doctype&#8230; unfortunately Sharepoint 2010 has been coded without standards, so lot of things are now broken. I spent some time to find the broken functions. I&#8217;ve created a file that is called just after &#60;SharePoint:ScriptLink language="javascript" name="core.js" OnDemand="true" runat="server"/&#62;, and you can download [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I wanted to have a masterpage for Sharepoint 2010 with a HTML5 Doctype&#8230; unfortunately Sharepoint 2010 has been coded without standards, so lot of things are now broken.</p>
<p>I spent some time to find the broken functions. I&#8217;ve created a file that is called just after <code>&lt;SharePoint:ScriptLink language="javascript" name="core.js" OnDemand="true" runat="server"/&gt;</code>, and you <a href="http://blog.kodono.info/wordpress/wp-content/uploads/fix_sp2010.js">can download it here (.js file)</a>.</p>
<p>I overwrite some functions to make the &#8220;Multiple lines of text&#8221; to work and same thing for the &#8220;People Picker&#8221;, and other stuff. That could be useful for someone else.</p>
<p>Also I found that the Gantt View doesn&#8217;t work in Standard Mode. So I&#8217;ve also overwritten some functions to make it OK in IE8, IE9 and IE10: <a href="http://blog.kodono.info/wordpress/wp-content/uploads/fix_grid_sp2010.js">fix_grid_sp2010.js</a>. This file must be called at the bottom of your masterpage (in my case it&#8217;s just after the <code>&lt;/form></code>) with something like :</p>
<pre class="brush:html">
&lt;script type="text/javascript">
// &lt;![CDATA[
if (typeof SP !== "undefined" &#038;& typeof SP.JsGrid !== "undefined") document.write('&lt;script type="text/javascript" src="/dir/_catalogs/masterpage/My_Standard/js/fix_grid_sp2010.js">&lt;/'+'script>');
// ]]&gt;
&lt;/script>
</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2013/03/20/sharepoint-2010-and-ie-in-standard-mode-issues-with-ie9ie10/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Cross-browser solution to read a local file and return the Data URI in base64 [Javascript]</title>
		<link>https://blog.kodono.info/wordpress/2012/07/24/cross-browser-solution-to-read-a-local-file-and-return-the-data-uri-in-base64-javascript/</link>
					<comments>https://blog.kodono.info/wordpress/2012/07/24/cross-browser-solution-to-read-a-local-file-and-return-the-data-uri-in-base64-javascript/#comments</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Tue, 24 Jul 2012 13:15:21 +0000</pubDate>
				<category><![CDATA[Navigateur]]></category>
		<category><![CDATA[Niveau intermédiaire]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=1084</guid>

					<description><![CDATA[I searched for a solution to have a way to read a local file and then have the Base64 content returned into all the web browsers. The Javascript FileReader API exists for the modern browsers but not for Internet Explorer (IE). The solution is finally with Flash ! Look at the project on http://aymkdn.github.com/FileToDataURI/, and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I searched for a solution to have a way to read a local file and then have the Base64 content returned into all the web browsers. The Javascript FileReader API exists for the modern browsers but not for Internet Explorer (IE). The solution is finally with Flash !</p>
<p>Look at the project on <a href="http://aymkdn.github.com/FileToDataURI/">http://aymkdn.github.com/FileToDataURI/</a>, and thanks to <a href="https://github.com/Country/FileToDataURI.as">Country/FileToDataURI.as</a> for the inspiration <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2012/07/24/cross-browser-solution-to-read-a-local-file-and-return-the-data-uri-in-base64-javascript/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>IE8 Developer Toolbar qui ne s&#8217;affiche plus [astuce]</title>
		<link>https://blog.kodono.info/wordpress/2011/08/17/ie8-developer-toolbar-qui-ne-saffiche-plus-astuce/</link>
					<comments>https://blog.kodono.info/wordpress/2011/08/17/ie8-developer-toolbar-qui-ne-saffiche-plus-astuce/#comments</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Wed, 17 Aug 2011 09:20:29 +0000</pubDate>
				<category><![CDATA[Astuce]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[Navigateur]]></category>
		<category><![CDATA[Niveau débutant]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=704</guid>

					<description><![CDATA[Avec Internet Explorer il est possible d&#8217;utiliser un débogueur qu&#8217;ils nomment &#8220;IE Developer Toolbar&#8221;. C&#8217;est très peu puissant, mais quand on doit travailler sur ce navigateur ça peut être utile&#8230; Pour l&#8217;activer il faut appuyer sur la touche F12, seulement, dans mon cas, même si elle apparaissait bien dans la liste des fenêtres ouvertes, quand [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Avec Internet Explorer il est possible d&#8217;utiliser un débogueur qu&#8217;ils nomment &#8220;IE Developer Toolbar&#8221;. C&#8217;est très peu puissant, mais quand on doit travailler sur ce navigateur ça peut être utile&#8230;</p>
<p>Pour l&#8217;activer il faut appuyer sur la touche F12, seulement, dans mon cas, même si elle apparaissait bien dans la liste des fenêtres ouvertes, quand je cliquais dessus rien ne se passait : elle ne s&#8217;ouvrait pas ! La solution consiste à faire un <strong>SHIFT + Clic Droit</strong> sur la fenêtre puis choisir <strong>&#8220;Maximize&#8221;</strong> (ou &#8220;Agrandir&#8221; en français), et là votre Developer Toolbar va s&#8217;ouvrir en grand. Les pré-réglages étant mauvais, la fenêtre s&#8217;ouvre dans un étrange mode.</p>
<p>Simple, mais il fallait y penser&#8230;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2011/08/17/ie8-developer-toolbar-qui-ne-saffiche-plus-astuce/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Limite de caractères dans un mailto/href sous IE [internet explorer limit]</title>
		<link>https://blog.kodono.info/wordpress/2011/06/15/limite-de-caracteres-dans-un-mailtohref-sous-ie-internet-explorer-limit/</link>
					<comments>https://blog.kodono.info/wordpress/2011/06/15/limite-de-caracteres-dans-un-mailtohref-sous-ie-internet-explorer-limit/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Wed, 15 Jun 2011 08:59:33 +0000</pubDate>
				<category><![CDATA[Navigateur]]></category>
		<category><![CDATA[Niveau débutant]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[Astuce]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=598</guid>

					<description><![CDATA[[niveau débutant] Je me suis retrouvé dans la situation où dans un mailto je devais inscrire plusieurs informations (subject, cc, body) afin de créer une sorte de template qui s&#8217;ouvrirait avec Outlook. Je l&#8217;avais incorporé dans un href d&#8217;un lien classique. Si le lien fonctionnait parfaitement sous Firefox, il apparait que sous Internet Explorer j&#8217;avais [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>[niveau débutant]</p>
<p>Je me suis retrouvé dans la situation où dans un mailto je devais inscrire plusieurs informations (subject, cc, body) afin de créer une sorte de template qui s&#8217;ouvrirait avec Outlook. Je l&#8217;avais incorporé dans un <em>href</em> d&#8217;un lien classique. Si le lien fonctionnait parfaitement sous Firefox, il apparait que sous Internet Explorer j&#8217;avais droit à une page blanche (<em>about:blank</em>)&#8230; <a href="http://havingfunyet.wordpress.com/2010/09/30/long-mailto-link-does-not-work-in-ie-8/">Après quelques recherches</a>, j&#8217;ai découvert qu&#8217;IE en &#8220;Protected Mode: Off&#8221; se limite à 508 caractères pour le mailto&#8230;. allez savoir d&#8217;où vient cette limite ?!</p>
<p>Pour outrepasser ce problème, vous avez deux solutions :<br />
1) Demander à vos utilisateurs de passer en &#8220;Protected Mode: On&#8221; (non envisageable)<br />
<strong>2) Utiliser Javascript en associant un <em>window.location.href</em> à votre ligne <em>mailto:email?subject=xxx&#038;cc=xxx&#038;body=xxxx</em>, qui fonctionnera pour tout le monde !</strong></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2011/06/15/limite-de-caracteres-dans-un-mailtohref-sous-ie-internet-explorer-limit/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>jQuery.ready() avant le chargement des images [Javascript]</title>
		<link>https://blog.kodono.info/wordpress/2010/11/19/jquery-ready-avant-le-chargement-des-images-javascript/</link>
					<comments>https://blog.kodono.info/wordpress/2010/11/19/jquery-ready-avant-le-chargement-des-images-javascript/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Fri, 19 Nov 2010 17:01:41 +0000</pubDate>
				<category><![CDATA[Astuce]]></category>
		<category><![CDATA[Navigateur]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Niveau débutant]]></category>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=511</guid>

					<description><![CDATA[[niveau: intermédiaire] Pour ma société je dois travailler sur IE7. Il se trouve que j&#8217;utilise jQuery (1.4.4) avec Microsoft Sharepoint pour customizer certaines pages. J&#8217;ai remarqué que sous mon IE7 la fonction jQuery(document).ready() n&#8217;était appelée que lorsque les images étaient complètement chargées; cependant ce comportement ralentissait grandement les modifications que je cherchais à faire. Après [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>[niveau: intermédiaire]</p>
<p>Pour ma société je dois travailler sur IE7. Il se trouve que j&#8217;utilise jQuery (1.4.4) avec Microsoft Sharepoint pour customizer certaines pages. J&#8217;ai remarqué que sous mon IE7 la fonction <code>jQuery(document).ready()</code> n&#8217;était appelée que lorsque les images étaient complètement chargées; cependant ce comportement ralentissait grandement les modifications que je cherchais à faire.</p>
<p>Après quelques recherches j&#8217;ai découvert une solution qui fonctionne pour moi sur le <a href="https://nexxar.wordpress.com/2010/10/07/speeding-up-jquery-ready-on-ie/">blog de Nexxar</a> : il suffit d&#8217;ajouter <code>try { jQuery.ready(); } catch {}</code> à la fin de la page HTML pour que notre fonction <em>ready</em> soit activée avant que toutes les images ne soient pleinement téléchargées !</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2010/11/19/jquery-ready-avant-le-chargement-des-images-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Emuler Internet Explorer de Windows Mobile [Web Design]</title>
		<link>https://blog.kodono.info/wordpress/2010/08/03/emuler-internet-explorer-de-windows-mobile-web-design/</link>
					<comments>https://blog.kodono.info/wordpress/2010/08/03/emuler-internet-explorer-de-windows-mobile-web-design/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Tue, 03 Aug 2010 17:48:28 +0000</pubDate>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[Navigateur]]></category>
		<category><![CDATA[Niveau intermédiaire]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[internet explorer]]></category>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=462</guid>

					<description><![CDATA[[niveau: intermédiaire] Pour tester la version mobile d&#8217;Internet Explorer il vous faut installer tout un attirail : &#8211; Virtual PC 2007; &#8211; Gestionnaire pour appareils Windows Mobile 6.1; &#8211; 040C/Windows Mobile 6 Professional Images (FRA).msi (attention de bien prendre la version PROFESSIONAL). Une fois tout cela installé, il faut procéder à plusieurs étapes : Dans [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>[niveau: intermédiaire]</p>
<p>Pour tester la version mobile d&#8217;Internet Explorer il vous faut installer tout un attirail :<br />
&#8211; <a href="https://www.microsoft.com/downloads/details.aspx?displaylang=fr&#038;familyid=04d26402-3199-48a3-afa2-2dc0b40a73b6">Virtual PC 2007</a>;<br />
&#8211; <a href="https://www.microsoft.com/downloads/details.aspx?familyid=46F72DF1-E46A-4A5F-A791-09F07AAA1914&#038;displaylang=fr">Gestionnaire pour appareils Windows Mobile 6.1</a>;<br />
&#8211; <a href="https://www.microsoft.com/downloads/details.aspx?FamilyID=38c46aa8-1dd7-426f-a913-4f370a65a582&#038;displaylang=en">040C/Windows Mobile 6 Professional Images (FRA).msi</a> (attention de bien prendre la version PROFESSIONAL).</p>
<p>Une fois tout cela installé, il faut procéder à plusieurs étapes :</p>
<ol>
<li>Dans le menu Démarrer, choisissez <em>Windows Mobile 6 SDK</em>, puis <em>Standalone Emulator Images</em>, <em>French</em> et <em>Professional</em>; une fois lancé, cliquez sur <em>File</em>, <em>Configure&#8230;</em> puis <em>Network</em> et cochez la case &#8220;Enable NE2000 PCMCIA&#8221; et prenez votre connexion dans la liste déroulante.</li>
<li>Lancez maintenant <em>Device Emulator Manager</em> depuis le menu Démarrer de Windows; une fois lancé, dans l&#8217;arborescence, cliquez droit sur ce qui correspond à l&#8217;émulateur et prenez l&#8217;option &#8220;Cradle&#8221;.</li>
<li>Maintenant lancez le <em>Gestionnaire pour appareil Windows Mobile</em> depuis le menu Démarrer</li>
<li>Le gestionnaire devrait détecter votre émulateur et l&#8217;ajouter; de là vous pourrez configurer la connexion réseau en suivant cette image :<br />
<a href="http://blog.kodono.info/wordpress/wp-content/uploads/2010/08/20100803_emulateur_IE.png"><img fetchpriority="high" decoding="async" src="http://blog.kodono.info/wordpress/wp-content/uploads/2010/08/20100803_emulateur_IE.png" alt="" title="20100803_emulateur_IE" width="468" height="301" class="aligncenter size-full wp-image-463" srcset="https://blog.kodono.info/wordpress/wp-content/uploads/2010/08/20100803_emulateur_IE.png 468w, https://blog.kodono.info/wordpress/wp-content/uploads/2010/08/20100803_emulateur_IE-300x192.png 300w" sizes="(max-width: 468px) 100vw, 468px" /></a></li>
<li>Maintenant vous devriez pouvoir lancer Internet Explorer sur votre émulateur et vous devriez avoir accès à Internet !</li>
</ol>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2010/08/03/emuler-internet-explorer-de-windows-mobile-web-design/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
