<?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/"
		>
<channel>
	<title>Comments for Farblondzshet in Code</title>
	<atom:link href="http://matthewmanela.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://matthewmanela.com</link>
	<description>The life and work of Matthew Manela</description>
	<lastBuildDate>Wed, 22 May 2013 06:58:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Making linking between anchors in an IFrame work in Chrome and Firefox 11+ by Jay Prakash</title>
		<link>http://matthewmanela.com/blog/making-linking-between-anchors-in-an-iframe-work-in-firefox-11-and-above/comment-page-1/#comment-2827</link>
		<dc:creator>Jay Prakash</dc:creator>
		<pubDate>Wed, 22 May 2013 06:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://matthewmanela.com/?p=1439#comment-2827</guid>
		<description><![CDATA[Hi Mathew,

 I am trying to implement this. but it did not work in case of iframe within iframe. My page html is:




    
	  my text answer 1
  
   
	  my text answer 2
  


   
        &lt;a href=&quot;#student_question_box_1&quot; rel=&quot;nofollow&quot;&gt;Question  1&lt;/a&gt;
  
  
     &lt;a href=&quot;#student_question_box_2&quot; rel=&quot;nofollow&quot;&gt;Question  2&lt;/a&gt;
  





For this I have written following jquery script :

$(document).ready(function() {
	var iframeOffset = $(&quot;#main-frame&quot;, window.parent.document).offset();	
	$(&quot;.question_lists&quot;).live(&quot;click&quot;, function(){ 
	    var id = this.id;
	    $(&#039;div[id^=&quot;student_question_box_&quot;]&#039;).css({&#039;background&#039;:&#039;none&#039;,&#039;border&#039;:&#039;none&#039;})
	    $(&quot;#student_question_box_&quot;+id).css({&#039;background&#039;:&#039;#ccc&#039;,&#039;margin&#039;:&#039;12px 0px&#039;,&#039;border&#039;:&#039;2px solid #a3a3a3&#039;,&#039;padding-left&#039;:&#039;5px&#039;,&#039;border-radius&#039;:&#039;2px&#039;,&#039;width&#039;:&#039;100%&#039;,&#039;color&#039;:&#039;#111&#039;});	    
	   
        var idElement = $(&quot;#student_question_box_&quot;+id);
        var element = null;
        if(idElement.length &gt; 0) {
          element = idElement;
        }
        
        if(element) {
          var offset = element.offset();         
         alert(window.parent.scrollTo(offset.left, offset.top + iframeOffset.top));
        } 
        return false;
        
		});
});

Can you please tell me where exactly I am making mistake? Actually you have given sample for only one Iframe tag. but what shud I do for page opens in iframe withing iframe?

Thanks &amp; Regards

Jay]]></description>
		<content:encoded><![CDATA[<p>Hi Mathew,</p>
<p> I am trying to implement this. but it did not work in case of iframe within iframe. My page html is:</p>
<p>	  my text answer 1</p>
<p>	  my text answer 2</p>
<p>        <a href="#student_question_box_1" rel="nofollow">Question  1</a></p>
<p>     <a href="#student_question_box_2" rel="nofollow">Question  2</a></p>
<p>For this I have written following jquery script :</p>
<p>$(document).ready(function() {<br />
	var iframeOffset = $(&#8220;#main-frame&#8221;, window.parent.document).offset();<br />
	$(&#8220;.question_lists&#8221;).live(&#8220;click&#8221;, function(){<br />
	    var id = this.id;<br />
	    $(&#8216;div[id^="student_question_box_"]&#8216;).css({&#8216;background&#8217;:'none&#8217;,'border&#8217;:'none&#8217;})<br />
	    $(&#8220;#student_question_box_&#8221;+id).css({&#8216;background&#8217;:'#ccc&#8217;,'margin&#8217;:&#8217;12px 0px&#8217;,'border&#8217;:&#8217;2px solid #a3a3a3&#8242;,&#8217;padding-left&#8217;:&#8217;5px&#8217;,'border-radius&#8217;:&#8217;2px&#8217;,'width&#8217;:&#8217;100%&#8217;,'color&#8217;:'#111&#8242;});	    </p>
<p>        var idElement = $(&#8220;#student_question_box_&#8221;+id);<br />
        var element = null;<br />
        if(idElement.length &gt; 0) {<br />
          element = idElement;<br />
        }</p>
<p>        if(element) {<br />
          var offset = element.offset();<br />
         alert(window.parent.scrollTo(offset.left, offset.top + iframeOffset.top));<br />
        }<br />
        return false;</p>
<p>		});<br />
});</p>
<p>Can you please tell me where exactly I am making mistake? Actually you have given sample for only one Iframe tag. but what shud I do for page opens in iframe withing iframe?</p>
<p>Thanks &amp; Regards</p>
<p>Jay</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Snippet Designer now supports C++ by Matthew</title>
		<link>http://matthewmanela.com/blog/snippet-designer-now-supports-c/comment-page-1/#comment-2788</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Fri, 10 May 2013 15:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://matthewmanela.com/?p=1480#comment-2788</guid>
		<description><![CDATA[Make sure you are using VS 2012 since VS2010 does not support C++ snippets.]]></description>
		<content:encoded><![CDATA[<p>Make sure you are using VS 2012 since VS2010 does not support C++ snippets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Snippet Designer now supports C++ by Marcelo Lopez</title>
		<link>http://matthewmanela.com/blog/snippet-designer-now-supports-c/comment-page-1/#comment-2787</link>
		<dc:creator>Marcelo Lopez</dc:creator>
		<pubDate>Fri, 10 May 2013 14:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://matthewmanela.com/?p=1480#comment-2787</guid>
		<description><![CDATA[Downloaded the plugin but the language support for Visual C++ doesn&#039;t show up.
Are you sure you upload that build to CodePlex ?]]></description>
		<content:encoded><![CDATA[<p>Downloaded the plugin but the language support for Visual C++ doesn&#8217;t show up.<br />
Are you sure you upload that build to CodePlex ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chutzpah 2.4 &#8211; Code Coverage is a go! by Matthew</title>
		<link>http://matthewmanela.com/blog/chutzpah-2-4-code-coverage-is-a-go/comment-page-1/#comment-2735</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Sun, 28 Apr 2013 17:39:28 +0000</pubDate>
		<guid isPermaLink="false">http://matthewmanela.com/?p=1574#comment-2735</guid>
		<description><![CDATA[I totally forgot. I update the &lt;a href=&quot;https://chutzpah.codeplex.com/wikipage?title=Chutzpah%20File%20References&amp;referringTitle=Documentation&quot; rel=&quot;nofollow&quot;&gt;Chutzpah documentation&lt;/a&gt; to talk about that feature;]]></description>
		<content:encoded><![CDATA[<p>I totally forgot. I update the <a href="https://chutzpah.codeplex.com/wikipage?title=Chutzpah%20File%20References&#038;referringTitle=Documentation" rel="nofollow">Chutzpah documentation</a> to talk about that feature;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The problem with the EnvDTE ItemOperations.NewFile method by ING</title>
		<link>http://matthewmanela.com/blog/the-problem-with-the-envdte-itemoperations-newfile-method/comment-page-1/#comment-2724</link>
		<dc:creator>ING</dc:creator>
		<pubDate>Thu, 25 Apr 2013 18:33:45 +0000</pubDate>
		<guid isPermaLink="false">http://matthewmanela.com/?p=1164#comment-2724</guid>
		<description><![CDATA[Great post!]]></description>
		<content:encoded><![CDATA[<p>Great post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chutzpah 2.4 &#8211; Code Coverage is a go! by Qube</title>
		<link>http://matthewmanela.com/blog/chutzpah-2-4-code-coverage-is-a-go/comment-page-1/#comment-2722</link>
		<dc:creator>Qube</dc:creator>
		<pubDate>Thu, 25 Apr 2013 04:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://matthewmanela.com/?p=1574#comment-2722</guid>
		<description><![CDATA[It&#039;s actually new in 2.4. It was merged pretty soon after 2.3 was released.]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s actually new in 2.4. It was merged pretty soon after 2.3 was released.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chutzpah 2.4 &#8211; Code Coverage is a go! by Matthew</title>
		<link>http://matthewmanela.com/blog/chutzpah-2-4-code-coverage-is-a-go/comment-page-1/#comment-2720</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Thu, 25 Apr 2013 02:05:46 +0000</pubDate>
		<guid isPermaLink="false">http://matthewmanela.com/?p=1574#comment-2720</guid>
		<description><![CDATA[I forgot about that. Was that included in 2.3? or did it come in with 2.4?]]></description>
		<content:encoded><![CDATA[<p>I forgot about that. Was that included in 2.3? or did it come in with 2.4?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chutzpah 2.4 &#8211; Code Coverage is a go! by Qube</title>
		<link>http://matthewmanela.com/blog/chutzpah-2-4-code-coverage-is-a-go/comment-page-1/#comment-2719</link>
		<dc:creator>Qube</dc:creator>
		<pubDate>Thu, 25 Apr 2013 01:05:55 +0000</pubDate>
		<guid isPermaLink="false">http://matthewmanela.com/?p=1574#comment-2719</guid>
		<description><![CDATA[The ability to exclude script references for the sake of replacing them with fakes was also rolled into 2.4 :)

https://chutzpah.codeplex.com/workitem/92
https://chutzpah.codeplex.com/discussions/433478]]></description>
		<content:encoded><![CDATA[<p>The ability to exclude script references for the sake of replacing them with fakes was also rolled into 2.4 :)</p>
<p><a href="https://chutzpah.codeplex.com/workitem/92" rel="nofollow">https://chutzpah.codeplex.com/workitem/92</a><br />
<a href="https://chutzpah.codeplex.com/discussions/433478" rel="nofollow">https://chutzpah.codeplex.com/discussions/433478</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chutzpah 2.4 &#8211; Code Coverage is a go! by Chutzpah to run JavaScript tests &#124; Just A Programmer</title>
		<link>http://matthewmanela.com/blog/chutzpah-2-4-code-coverage-is-a-go/comment-page-1/#comment-2717</link>
		<dc:creator>Chutzpah to run JavaScript tests &#124; Just A Programmer</dc:creator>
		<pubDate>Wed, 24 Apr 2013 16:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://matthewmanela.com/?p=1574#comment-2717</guid>
		<description><![CDATA[[...] Today&#8217;s Chutzpah 2.4 release brings code coverage (via BlanketJS) and contains my tiny patch for unicode support  [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Today&#8217;s Chutzpah 2.4 release brings code coverage (via BlanketJS) and contains my tiny patch for unicode support  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chutzpah 2.2 with TypeScript support by Ben Kotvis</title>
		<link>http://matthewmanela.com/blog/chutzpah-2-2-with-typescript-support/comment-page-1/#comment-2686</link>
		<dc:creator>Ben Kotvis</dc:creator>
		<pubDate>Sun, 14 Apr 2013 17:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://matthewmanela.com/?p=1547#comment-2686</guid>
		<description><![CDATA[Nevermind, it looks like you are supposed to use the QUnit.d.ts.  You can find that &lt;a href=&quot;https://github.com/borisyankov/DefinitelyTyped/tree/master/qunit&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Nevermind, it looks like you are supposed to use the QUnit.d.ts.  You can find that <a href="https://github.com/borisyankov/DefinitelyTyped/tree/master/qunit" rel="nofollow">here</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
