<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: About</title>
	<atom:link href="http://softwareas.com/about/feed" rel="self" type="application/rss+xml" />
	<link>http://softwareas.com</link>
	<description>Mahemoff's Podcast/Blog - Web, Programming, Usability from the Author of 'Ajax Design Patterns' (AjaxPatterns.org)</description>
	<lastBuildDate>Sat, 24 Jul 2010 21:06:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Roger Peters</title>
		<link>http://softwareas.com/about/comment-page-1#comment-468401</link>
		<dc:creator>Roger Peters</dc:creator>
		<pubDate>Wed, 03 Mar 2010 23:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://softwareas.com/?page_id=429#comment-468401</guid>
		<description>&lt;p&gt;Micheal,&lt;/p&gt;

&lt;p&gt;I wrote the following support request to snap.com:&lt;/p&gt;

&lt;p&gt;Dear sir/madam.&lt;/p&gt;

&lt;p&gt;I have a site, that through Ajax dynamically loads URL&#039;s inside a  on the page, after user action, long after the page has loaded. Adding the snapshots  tag inside the  or just before the  works fine with static URL&#039;s, but not with the ones loaded after the user action. The user action will get URL&#039;s through ajax and add them to the result .&lt;/p&gt;

&lt;p&gt;I tried the following: After the result  is filled with URL&#039;s, I re-add the script like this:&lt;/p&gt;

&lt;p&gt;function reloadSnapShots() {
    var head = document.getElementsByTagName(&quot;head&quot;)[0];
    var snapShotsScript = document.getElementById(&quot;snapshots_script&quot;);
    head.removeChild(snapShotsScript);&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;&lt;code&gt;var script = document.createElement(&quot;script&quot;);
script.id = &quot;snapshots_script&quot;;
script.type = &quot;text/javascript&quot;;
script.src = &quot;http://shots.snap.com/ss/cbf86571e3882ee57dc283706a1da41a/snap_shots.js&quot;;
head.appendChild(script);
&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;}&lt;/p&gt;

&lt;p&gt;In the html of my page in the head section I have the following:
    
This makes sure that the document.getElementById(&quot;snapshots_script&quot;);
doesnt return an &quot;undefined&quot;.&lt;/p&gt;

&lt;p&gt;So, this trick works great, the first time i call this, directly after the first user action - not after page load!&lt;/p&gt;

&lt;p&gt;However, the second and all other times, this doesnt work.&lt;/p&gt;

&lt;p&gt;Is there any way to re-start the scripts scanning of all the links in a html document (even if they were added with Ajax/dhtml), to make them add the SnapShots preview functions to the URL&#039;s?&lt;/p&gt;

&lt;p&gt;Ps, The site http://weborandom.com/ seems to have the same issue as i am addressing here. On first dynamic load of URL&#039;s (under the randomize button) SnapShots URL enrichment works great. After hitting the randomize button, the SnapShots functions dont work anymore. That site uses the same technique as me to add the script tag after loading of the URL&#039;s has finished.&lt;/p&gt;

&lt;p&gt;With kind regards, 
Roger Peters&lt;/p&gt;

&lt;p&gt;Do you have any idea why at &quot;weborandom.com&quot; this second time loading of the SnapShots script doesnt work?&lt;/p&gt;

&lt;p&gt;Kind regards, Roger Peters&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Micheal,</p>

<p>I wrote the following support request to snap.com:</p>

<p>Dear sir/madam.</p>

<p>I have a site, that through Ajax dynamically loads URL&#8217;s inside a  on the page, after user action, long after the page has loaded. Adding the snapshots  tag inside the  or just before the  works fine with static URL&#8217;s, but not with the ones loaded after the user action. The user action will get URL&#8217;s through ajax and add them to the result .</p>

<p>I tried the following: After the result  is filled with URL&#8217;s, I re-add the script like this:</p>

<p>function reloadSnapShots() {
    var head = document.getElementsByTagName(&#8220;head&#8221;)[0];
    var snapShotsScript = document.getElementById(&#8220;snapshots_script&#8221;);
    head.removeChild(snapShotsScript);</p>

<p><pre><code>var script = document.createElement("script");
script.id = "snapshots_script";
script.type = "text/javascript";
script.src = "http://shots.snap.com/ss/cbf86571e3882ee57dc283706a1da41a/snap_shots.js";
head.appendChild(script);
</code></pre></p>

<p>}</p>

<p>In the html of my page in the head section I have the following:
    
This makes sure that the document.getElementById(&#8220;snapshots_script&#8221;);
doesnt return an &#8220;undefined&#8221;.</p>

<p>So, this trick works great, the first time i call this, directly after the first user action &#8211; not after page load!</p>

<p>However, the second and all other times, this doesnt work.</p>

<p>Is there any way to re-start the scripts scanning of all the links in a html document (even if they were added with Ajax/dhtml), to make them add the SnapShots preview functions to the URL&#8217;s?</p>

<p>Ps, The site <a href="http://weborandom.com/" rel="nofollow">http://weborandom.com/</a> seems to have the same issue as i am addressing here. On first dynamic load of URL&#8217;s (under the randomize button) SnapShots URL enrichment works great. After hitting the randomize button, the SnapShots functions dont work anymore. That site uses the same technique as me to add the script tag after loading of the URL&#8217;s has finished.</p>

<p>With kind regards, 
Roger Peters</p>

<p>Do you have any idea why at &#8220;weborandom.com&#8221; this second time loading of the SnapShots script doesnt work?</p>

<p>Kind regards, Roger Peters</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Sathya Marie</title>
		<link>http://softwareas.com/about/comment-page-1#comment-465742</link>
		<dc:creator>Sathya Marie</dc:creator>
		<pubDate>Wed, 03 Feb 2010 08:49:23 +0000</pubDate>
		<guid isPermaLink="false">http://softwareas.com/?page_id=429#comment-465742</guid>
		<description>&lt;p&gt;Michael,&lt;/p&gt;

&lt;p&gt;I am looking for someone to do my company website test and audit. Please let me know if you offer this service. I need to be contacted at the earliest.&lt;/p&gt;

&lt;p&gt;regards,
Sathya&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Michael,</p>

<p>I am looking for someone to do my company website test and audit. Please let me know if you offer this service. I need to be contacted at the earliest.</p>

<p>regards,
Sathya</p>]]></content:encoded>
	</item>
	<item>
		<title>By: JES! - IE6 is older than ...</title>
		<link>http://softwareas.com/about/comment-page-1#comment-464968</link>
		<dc:creator>JES! - IE6 is older than ...</dc:creator>
		<pubDate>Tue, 26 Jan 2010 12:50:22 +0000</pubDate>
		<guid isPermaLink="false">http://softwareas.com/?page_id=429#comment-464968</guid>
		<description>&lt;p&gt;[...] unterhaltsame Weise macht Michael Mahemoff darauf aufmerksam, dass der IE6 (* 27.8.2001) mit seinen mittlerweile 3,074 Tagen auf der Uhr [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] unterhaltsame Weise macht Michael Mahemoff darauf aufmerksam, dass der IE6 (* 27.8.2001) mit seinen mittlerweile 3,074 Tagen auf der Uhr [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: mahemoff</title>
		<link>http://softwareas.com/about/comment-page-1#comment-451743</link>
		<dc:creator>mahemoff</dc:creator>
		<pubDate>Thu, 24 Sep 2009 23:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://softwareas.com/?page_id=429#comment-451743</guid>
		<description>&lt;p&gt;???!!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>???!!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: deanna</title>
		<link>http://softwareas.com/about/comment-page-1#comment-451628</link>
		<dc:creator>deanna</dc:creator>
		<pubDate>Thu, 24 Sep 2009 03:25:21 +0000</pubDate>
		<guid isPermaLink="false">http://softwareas.com/?page_id=429#comment-451628</guid>
		<description>&lt;p&gt;Hey Christopher,&lt;/p&gt;

&lt;p&gt;I did some green screen shots for you 2 years ago in Tampa, I never heard back from you, did you end up using them?&lt;/p&gt;

&lt;p&gt;Deanna&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hey Christopher,</p>

<p>I did some green screen shots for you 2 years ago in Tampa, I never heard back from you, did you end up using them?</p>

<p>Deanna</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Cyrill</title>
		<link>http://softwareas.com/about/comment-page-1#comment-448647</link>
		<dc:creator>Cyrill</dc:creator>
		<pubDate>Fri, 28 Aug 2009 11:09:47 +0000</pubDate>
		<guid isPermaLink="false">http://softwareas.com/?page_id=429#comment-448647</guid>
		<description>&lt;p&gt;Hello,
How to change the tiddler title ?
How to save local with workung FCKEditor ?
Is it possible to integrate tiddly docs in a CCtiddly Server environnement ?
Thanks for answer at cyrill1@myfaz.net&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hello,
How to change the tiddler title ?
How to save local with workung FCKEditor ?
Is it possible to integrate tiddly docs in a CCtiddly Server environnement ?
Thanks for answer at <a href="mailto:cyrill1@myfaz.net">cyrill1@myfaz.net</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: mahemoff</title>
		<link>http://softwareas.com/about/comment-page-1#comment-437050</link>
		<dc:creator>mahemoff</dc:creator>
		<pubDate>Wed, 17 Jun 2009 10:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://softwareas.com/?page_id=429#comment-437050</guid>
		<description>&lt;p&gt;Hi Felipe, I don&#039;t fully follow your scenario, but I get the impression you are coming up against the standard cross-domain restriction of iframes; namely, that under normal circumstances, two &quot;windows&quot; (top-level or iframe) can&#039;t talk to each other. Unless you use a hack like the cross-domain hack in my article, you can&#039;t control the content of another domain&#039;s iframe.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Felipe, I don&#8217;t fully follow your scenario, but I get the impression you are coming up against the standard cross-domain restriction of iframes; namely, that under normal circumstances, two &#8220;windows&#8221; (top-level or iframe) can&#8217;t talk to each other. Unless you use a hack like the cross-domain hack in my article, you can&#8217;t control the content of another domain&#8217;s iframe.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Felipe Carmo</title>
		<link>http://softwareas.com/about/comment-page-1#comment-436724</link>
		<dc:creator>Felipe Carmo</dc:creator>
		<pubDate>Mon, 15 Jun 2009 14:00:09 +0000</pubDate>
		<guid isPermaLink="false">http://softwareas.com/?page_id=429#comment-436724</guid>
		<description>&lt;p&gt;Hi Michael, I was reading some of your articles about IFRAME and JavaScript, but still remains one doubt.&lt;/p&gt;

&lt;p&gt;I would appreciate if you could help me.
I am trying to use IFRAME in a website, but 90% of the references are from external websites, which means that I don&#039;t have any kind of control of the &quot;internal&quot; content.&lt;/p&gt;

&lt;p&gt;When I link to these websites, some of then use JavaScript to control few objects, and when I am using IFRAME, it seems those requests got lost and a lot of funcionalities don&#039;t work.&lt;/p&gt;

&lt;p&gt;Any suggestion!?&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Michael, I was reading some of your articles about IFRAME and JavaScript, but still remains one doubt.</p>

<p>I would appreciate if you could help me.
I am trying to use IFRAME in a website, but 90% of the references are from external websites, which means that I don&#8217;t have any kind of control of the &#8220;internal&#8221; content.</p>

<p>When I link to these websites, some of then use JavaScript to control few objects, and when I am using IFRAME, it seems those requests got lost and a lot of funcionalities don&#8217;t work.</p>

<p>Any suggestion!?</p>

<p>Thanks</p>]]></content:encoded>
	</item>
	<item>
		<title>By: chris primbas</title>
		<link>http://softwareas.com/about/comment-page-1#comment-272591</link>
		<dc:creator>chris primbas</dc:creator>
		<pubDate>Sun, 22 Jun 2008 17:37:15 +0000</pubDate>
		<guid isPermaLink="false">http://softwareas.com/?page_id=429#comment-272591</guid>
		<description>&lt;p&gt;Do you outsource your Iframe work? We are very interested in working with you. Is there a number you can be reached?&lt;/p&gt;

&lt;p&gt;Sincerely,
Christopher Primbas
Partner
Video Email Services Inc.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Do you outsource your Iframe work? We are very interested in working with you. Is there a number you can be reached?</p>

<p>Sincerely,
Christopher Primbas
Partner
Video Email Services Inc.</p>]]></content:encoded>
	</item>
</channel>
</rss>
