<?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>Strainu onLine &#187; HTML</title>
	<atom:link href="http://www.strainu.ro/category/programming/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.strainu.ro</link>
	<description>Blogul unui automatist</description>
	<lastBuildDate>Fri, 28 Oct 2011 15:46:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>css float formating with javascript versus IE</title>
		<link>http://www.strainu.ro/programming/html/css-float-formating-with-javascript-versus-ie/</link>
		<comments>http://www.strainu.ro/programming/html/css-float-formating-with-javascript-versus-ie/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 17:19:27 +0000</pubDate>
		<dc:creator>dragos</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.strainu.ro/personal/css-float-formating-with-javascript-versus-ie/</guid>
		<description><![CDATA[If you ever, by any chance try to format some HTML elements with javascript, and that formating would refer to float propertries, please be aware. Let me give you the most simple example I&#8217;ve met: &#60;p id=&#34;a1&#34;&#62;a&#60;/p&#62; &#60;p id=&#34;a2&#34;&#62;a&#60;/p&#62; &#60;p id=&#34;a3&#34;&#62;a&#60;/p&#62; document.getElementById&#40;'a1'&#41;.style.width='100px'; &#160; document.getElementById&#40;'a2'&#41;.style.width='100px'; &#160; document.getElementById&#40;'a3'&#41;.style.width='100px'; &#160; document.getElementById&#40;'a1'&#41;.style.backgroundColor = '#FF0000'; &#160; &#160; document.getElementById&#40;'a2'&#41;.style.backgroundColor = '#FF0000'; [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever, by any chance try to format some HTML elements with javascript, and that formating would refer to float propertries, please be aware. Let me give you the most simple example I&#8217;ve met:</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;a1&quot;</span>&gt;</span>a<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a>&gt;</span><br />
<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;a2&quot;</span>&gt;</span>a<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a>&gt;</span><br />
<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;a3&quot;</span>&gt;</span>a<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a>&gt;</span></div></div>
<div class="codecolorer-container java default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a1'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">width</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'100px'</span><span style="color: #339933;">;</span> &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a2'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">width</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'100px'</span><span style="color: #339933;">;</span> &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a3'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">width</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'100px'</span><span style="color: #339933;">;</span> &nbsp; <br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a1'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">backgroundColor</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'#FF0000'</span><span style="color: #339933;">;</span> &nbsp; &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a2'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">backgroundColor</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'#FF0000'</span><span style="color: #339933;">;</span> &nbsp; &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a3'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">backgroundColor</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'#FF0000'</span><span style="color: #339933;">;</span> &nbsp; &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a1'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">cssFloat</span><span style="color: #339933;">=</span> <span style="color: #0000ff;">'left'</span><span style="color: #339933;">;</span> &nbsp; &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a2'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">cssFloat</span><span style="color: #339933;">=</span> <span style="color: #0000ff;">'left'</span><span style="color: #339933;">;</span> &nbsp; &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a3'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">cssFloat</span><span style="color: #339933;">=</span> <span style="color: #0000ff;">'left'</span><span style="color: #339933;">;</span></div></div>
<p>All the browsers will interpret it well, EXCEPT IE. On IE, the previous formating of the divs remains. The solution took me about 2 hours, and it looks like this. Do not ask me if changing the floating now would work, &#8217;cause I don&#8217;t know. I&#8217;m just to afraid even to think at such thing.</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;a1&quot;</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;float: left&quot;</span>&gt;</span>a<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a>&gt;</span><br />
<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;a2&quot;</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;float: left&quot;</span>&gt;</span>a<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a>&gt;</span><br />
<span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;a3&quot;</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;float: left&quot;</span>&gt;</span>a<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/p.html"><span style="color: #000000; font-weight: bold;">p</span></a>&gt;</span></div></div>
<div class="codecolorer-container java default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a1'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">width</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'100px'</span><span style="color: #339933;">;</span> &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a2'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">width</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'100px'</span><span style="color: #339933;">;</span> &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a3'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">width</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'100px'</span><span style="color: #339933;">;</span> &nbsp; <br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a1'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">backgroundColor</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'#FF0000'</span><span style="color: #339933;">;</span> &nbsp; &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a2'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">backgroundColor</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'#FF0000'</span><span style="color: #339933;">;</span> &nbsp; &nbsp;<br />
document.<span style="color: #006633;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'a3'</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">style</span>.<span style="color: #006633;">backgroundColor</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'#FF0000'</span><span style="color: #339933;">;</span></div></div>
<div class='sociable'><div><span class='sociable-tagline'><strong>Share and Enjoy:</strong></span></div><ul><li><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fcss-float-formating-with-javascript-versus-ie%2F&amp;t=css%20float%20formating%20with%20javascript%20versus%20IE" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a></li><li><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=css%20float%20formating%20with%20javascript%20versus%20IE%20-%20http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fcss-float-formating-with-javascript-versus-ie%2F" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a></li><li><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fcss-float-formating-with-javascript-versus-ie%2F" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a></li><li><a rel="nofollow" target="_blank"  href="mailto:?subject=css%20float%20formating%20with%20javascript%20versus%20IE&amp;body=http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fcss-float-formating-with-javascript-versus-ie%2F" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a></li><li><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a></li><li><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fcss-float-formating-with-javascript-versus-ie%2F&amp;title=css%20float%20formating%20with%20javascript%20versus%20IE&amp;bodytext=If%20you%20ever%2C%20by%20any%20chance%20try%20to%20format%20some%20HTML%20elements%20with%20javascript%2C%20and%20that%20formating%20would%20refer%20to%20float%20propertries%2C%20please%20be%20aware.%20Let%20me%20give%20you%20the%20most%20simple%20example%20I%27ve%20met%3A%0A%0A%0Aa%0Aa%0Aa%0A%0A%0Adocument.getElementById%28%27a1%27%29.style.width%3D%27" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a></li><li><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fcss-float-formating-with-javascript-versus-ie%2F&amp;title=css%20float%20formating%20with%20javascript%20versus%20IE" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.strainu.ro/programming/html/css-float-formating-with-javascript-versus-ie/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Permission denied to call method XMLHttpRequest.open</title>
		<link>http://www.strainu.ro/programming/html/permission-denied-to-call-method-xmlhttprequestopen/</link>
		<comments>http://www.strainu.ro/programming/html/permission-denied-to-call-method-xmlhttprequestopen/#comments</comments>
		<pubDate>Fri, 18 May 2007 14:12:57 +0000</pubDate>
		<dc:creator>dragos</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Permission denied]]></category>
		<category><![CDATA[XMLHttpRequest]]></category>

		<guid isPermaLink="false">http://blog.strainu.ro/personal/permission-denied-to-call-method-xmlhttprequestopen/</guid>
		<description><![CDATA[May find more here! Have you ever seen something like that? I recently had a very interesting experience within AJAX scripting. Let&#8217;s say you will access http://www.domain.ext, right? Now here comes my problem. There is a great difference between XMLHttpRequest.open&#40;'http://www.domain.ext/file.html', ...&#41; and XMLHttpRequest.open&#40;'http://domain.ext/file.html', ...&#41; The result? Opera&#8217;s console said just: Error, Internet Explorer said nothing, [...]]]></description>
			<content:encoded><![CDATA[<p align="right"><a href="http://dor.homelinux.com/it-stuff/2008/03/permission-denied-to-call-method-xmlhttprequestopen/">May find more here!</a></p>
<p>Have you ever seen something like that? I recently had a very interesting experience within AJAX scripting. Let&#8217;s say you will access <strong>http://www.domain.ext</strong>, right? Now here comes my problem. There is a great difference between</p>
<div class="codecolorer-container java default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">XMLHttpRequest.<span style="color: #006633;">open</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://www.domain.ext/file.html'</span>, ...<span style="color: #009900;">&#41;</span></div></div>
<p>and</p>
<div class="codecolorer-container java default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">XMLHttpRequest.<span style="color: #006633;">open</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://domain.ext/file.html'</span>, ...<span style="color: #009900;">&#41;</span></div></div>
<p>The result? Opera&#8217;s console said just: <em>Error</em>, Internet Explorer said nothing, and only the Mozilla browsers did give me a hint. And the hint&#8230; an interesting exception of which I didn&#8217;t know anything till that moment.</p>
<p>If, let&#8217;s say, you&#8217;re accessing <em>http://www.domain.ext</em> and the Ajax script is written for  <em>http://domain.ext</em> you will receive a very non explicit exception/error found in the title. After long searches on the internet I could not find anything clear, until&#8230;</p>
<p>I remembered that once I received this error within another website I was working at. At that moment I did not realize that I did find a solution, but hey&#8230; Who&#8217;s perfect?</p>
<p>Here&#8217;s a real thing. You know already that Ajax does not load on domain.ext pages from domain2.ext. This is a permission rule that cannot be forced that easy, <em>but</em> can can be avoided though a caching script. But did you know, <em>also</em> that Ajax cannot load a page even from a sub-domain of the domain you&#8217;re working with? It&#8217;s the same bugging rule that&#8217;s restricting this and from what I&#8217;ve tested till now, it&#8217;s true. And what do you think www.domain.ext is considered for domain.ext? Yes&#8230; it&#8217;s just an ordinary sub-domain&#8230;</p>
<p>The solution? A simple javascript class: <strong>location</strong>. How? Like this:</p>
<div class="codecolorer-container java default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">XMLHttpRequest.<span style="color: #006633;">open</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'http://'</span><span style="color: #339933;">+</span>location.<span style="color: #006633;">host</span><span style="color: #339933;">+</span><span style="color: #0000ff;">'/file.html'</span>, ...<span style="color: #009900;">&#41;</span></div></div>
<p>This is the solution I found for the problem showed above.</p>
<p>Now&#8230; If, for example you&#8217;re viewing domain.ext and you want do Ajax load something from sdmn.domain.ext, this is a completely different thing, and again it can be done with the caching script I was talking above. We write a simple php file in domain.ext, which will load the html from sdmn.domain.ext. (I will show how in another article, a little bit later. But you can find it on the internet if u ggl a bit.)</p>
<p><a href="http://en.wikipedia.org/wiki/AJAX">http://en.wikipedia.org/wiki/AJAX</a><br />
<a href="http://en.wikipedia.org/wiki/XMLHttpRequest">http://en.wikipedia.org/wiki/XMLHttpRequest</a><br />
<a href="http://en.wikipedia.org/wiki/Ajax_framework">http://en.wikipedia.org/wiki/Ajax_framework</a></p>
<p>Do remember please that Internet Explorer uses other javascript classes for Ajax. <em>XMLHttpRequest</em> is compatible only for <em>Firefox (IceWeasel), SeaMonkey (old Mozilla / IceApe), Opera</em> on Windows / Linux, <em>Konqueror</em> and, I think, <em>Epiphany</em> on Linux and MAC OS X&#8217;s <em>Safari</em>. There may be others of which I do not know.</p>
<div class='sociable'><div><span class='sociable-tagline'><strong>Share and Enjoy:</strong></span></div><ul><li><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fpermission-denied-to-call-method-xmlhttprequestopen%2F&amp;t=Permission%20denied%20to%20call%20method%20XMLHttpRequest.open" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a></li><li><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Permission%20denied%20to%20call%20method%20XMLHttpRequest.open%20-%20http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fpermission-denied-to-call-method-xmlhttprequestopen%2F" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a></li><li><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fpermission-denied-to-call-method-xmlhttprequestopen%2F" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a></li><li><a rel="nofollow" target="_blank"  href="mailto:?subject=Permission%20denied%20to%20call%20method%20XMLHttpRequest.open&amp;body=http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fpermission-denied-to-call-method-xmlhttprequestopen%2F" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/email_link.png" class="sociable-img sociable-hovers" title="email" alt="email" /></a></li><li><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a></li><li><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fpermission-denied-to-call-method-xmlhttprequestopen%2F&amp;title=Permission%20denied%20to%20call%20method%20XMLHttpRequest.open&amp;bodytext=May%20find%20more%20here%21%0D%0A%0D%0AHave%20you%20ever%20seen%20something%20like%20that%3F%20I%20recently%20had%20a%20very%20interesting%20experience%20within%20AJAX%20scripting.%20Let%27s%20say%20you%20will%20access%20http%3A%2F%2Fwww.domain.ext%2C%20right%3F%20Now%20here%20comes%20my%20problem.%20There%20is%20a%20great%20difference%20between%0D" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a></li><li><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.strainu.ro%2Fprogramming%2Fhtml%2Fpermission-denied-to-call-method-xmlhttprequestopen%2F&amp;title=Permission%20denied%20to%20call%20method%20XMLHttpRequest.open" ><img src="http://www.strainu.ro/site/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.strainu.ro/programming/html/permission-denied-to-call-method-xmlhttprequestopen/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

