<?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 Developer's Desk</title>
	<atom:link href="http://mdrisser.r1designs.net/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mdrisser.r1designs.net/blog</link>
	<description>Designing, Developing and Generally Making a Mess of Things</description>
	<lastBuildDate>Sun, 22 Nov 2009 05:38:55 -0700</lastBuildDate>
	<generator>http://wordpress.org/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on jQuery UI &#8211; Part 2 Tabs by Karen</title>
		<link>http://mdrisser.r1designs.net/blog/2008/05/28/jquery-ui-part-2-tabs/comment-page-1/#comment-953</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Sun, 22 Nov 2009 05:38:55 +0000</pubDate>
		<guid isPermaLink="false">http://mdrisser.r1designs.net/blog/?p=5#comment-953</guid>
		<description>@mdrisser

I&#039;m using jquery ui tabs v 1.7.2 on my site.  I see that you have a code that checks the value of html() to automatically hide tabs.  How does that work?  my site is static and has 7 total tabs.  I want to disable the tabs that don&#039;t have content in them automatically.  Where do I place the if statement?  Do I need an else to the if?  How will it know that a tab is empty?  Finally, should the code be...

if($(&#039;#myTab&#039;).html == &quot;&quot;)
{
$(&#039;#myTab&#039;).disable();
}

Thanks!</description>
		<content:encoded><![CDATA[<p>@mdrisser</p>
<p>I&#8217;m using jquery ui tabs v 1.7.2 on my site.  I see that you have a code that checks the value of html() to automatically hide tabs.  How does that work?  my site is static and has 7 total tabs.  I want to disable the tabs that don&#8217;t have content in them automatically.  Where do I place the if statement?  Do I need an else to the if?  How will it know that a tab is empty?  Finally, should the code be&#8230;</p>
<p>if($(&#8217;#myTab&#8217;).html == &#8220;&#8221;)<br />
{<br />
$(&#8217;#myTab&#8217;).disable();<br />
}</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The jQuery UI &#8211; Part 1 The Dialog by chepe263</title>
		<link>http://mdrisser.r1designs.net/blog/2008/05/16/the-jquery-ui-part-1-the-dialog/comment-page-1/#comment-934</link>
		<dc:creator>chepe263</dc:creator>
		<pubDate>Tue, 20 Oct 2009 15:44:16 +0000</pubDate>
		<guid isPermaLink="false">http://mdrisser.r1designs.net/blog/?p=3#comment-934</guid>
		<description>A good idea is open the example of jquery ui and copy the code of the scripts location and the css to avoid problems</description>
		<content:encoded><![CDATA[<p>A good idea is open the example of jquery ui and copy the code of the scripts location and the css to avoid problems</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The jQuery UI &#8211; Part 1 The Dialog by Steve Brown</title>
		<link>http://mdrisser.r1designs.net/blog/2008/05/16/the-jquery-ui-part-1-the-dialog/comment-page-1/#comment-931</link>
		<dc:creator>Steve Brown</dc:creator>
		<pubDate>Fri, 16 Oct 2009 20:35:20 +0000</pubDate>
		<guid isPermaLink="false">http://mdrisser.r1designs.net/blog/?p=3#comment-931</guid>
		<description>I want to have a dialog with &#039;fixed&#039; position, so it doesn&#039;t scroll when the user scrolls the window (yes, I know this won&#039;t work in older IEs). 

If I make the div I create the dialog from fixed, then the contents, but not the frame, of the dialog stay put on scrolling.

Any ideas? (it&#039;s probably obvious: sorry!)</description>
		<content:encoded><![CDATA[<p>I want to have a dialog with &#8216;fixed&#8217; position, so it doesn&#8217;t scroll when the user scrolls the window (yes, I know this won&#8217;t work in older IEs). </p>
<p>If I make the div I create the dialog from fixed, then the contents, but not the frame, of the dialog stay put on scrolling.</p>
<p>Any ideas? (it&#8217;s probably obvious: sorry!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The jQuery UI &#8211; Part 1 The Dialog by Brustwarzenpiercing</title>
		<link>http://mdrisser.r1designs.net/blog/2008/05/16/the-jquery-ui-part-1-the-dialog/comment-page-1/#comment-786</link>
		<dc:creator>Brustwarzenpiercing</dc:creator>
		<pubDate>Sun, 19 Jul 2009 10:06:05 +0000</pubDate>
		<guid isPermaLink="false">http://mdrisser.r1designs.net/blog/?p=3#comment-786</guid>
		<description>Nice Tutorial. But i have one question. I want to add the dialog a img. can anybody give me an example please?</description>
		<content:encoded><![CDATA[<p>Nice Tutorial. But i have one question. I want to add the dialog a img. can anybody give me an example please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI &#8211; Part 2 Tabs by mdrisser</title>
		<link>http://mdrisser.r1designs.net/blog/2008/05/28/jquery-ui-part-2-tabs/comment-page-1/#comment-737</link>
		<dc:creator>mdrisser</dc:creator>
		<pubDate>Tue, 14 Jul 2009 00:58:54 +0000</pubDate>
		<guid isPermaLink="false">http://mdrisser.r1designs.net/blog/?p=5#comment-737</guid>
		<description>@Danny, I would check to see if the tabs contain anything by checking the value of html(). Then if its empty, use the disble function f the tabs UI to disable the empty tab(s).
Something like:
if($(&#039;#myTab&#039;).html == &#039;&#039;) {
    $(&#039;#myTab&#039;).disable();
}</description>
		<content:encoded><![CDATA[<p>@Danny, I would check to see if the tabs contain anything by checking the value of html(). Then if its empty, use the disble function f the tabs UI to disable the empty tab(s).<br />
Something like:<br />
if($(&#8217;#myTab&#8217;).html == &#8221;) {<br />
    $(&#8217;#myTab&#8217;).disable();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI &#8211; Part 2 Tabs by Danny</title>
		<link>http://mdrisser.r1designs.net/blog/2008/05/28/jquery-ui-part-2-tabs/comment-page-1/#comment-736</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Sun, 12 Jul 2009 07:52:51 +0000</pubDate>
		<guid isPermaLink="false">http://mdrisser.r1designs.net/blog/?p=5#comment-736</guid>
		<description>I&#039;m using these tabs in post, and I&#039;m trying to control the amount of tabs that show up in each post, for example i created so there can be a maximum of four different tabs.
in one post theres only content in 1 tab so i don&#039;t really need to use tabs but in the next post theres content in 2 different tabs so i use those tabs and i want only these 2 to show in post and other 2 not show at all unless i add content in the 3rd or 4th tabs</description>
		<content:encoded><![CDATA[<p>I&#8217;m using these tabs in post, and I&#8217;m trying to control the amount of tabs that show up in each post, for example i created so there can be a maximum of four different tabs.<br />
in one post theres only content in 1 tab so i don&#8217;t really need to use tabs but in the next post theres content in 2 different tabs so i use those tabs and i want only these 2 to show in post and other 2 not show at all unless i add content in the 3rd or 4th tabs</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The jQuery UI &#8211; Part 1 The Dialog by cnsk</title>
		<link>http://mdrisser.r1designs.net/blog/2008/05/16/the-jquery-ui-part-1-the-dialog/comment-page-1/#comment-732</link>
		<dc:creator>cnsk</dc:creator>
		<pubDate>Mon, 22 Jun 2009 13:04:34 +0000</pubDate>
		<guid isPermaLink="false">http://mdrisser.r1designs.net/blog/?p=3#comment-732</guid>
		<description>Great Tutorial. Thanks</description>
		<content:encoded><![CDATA[<p>Great Tutorial. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Comparison of 3 JavaScript Frameworks &#8211; Part 1 jQuery by One of these days, hopefully soon&#8230;. &#124; Developer's Desk</title>
		<link>http://mdrisser.r1designs.net/blog/2009/02/07/a-comparison-of-3-javascript-frameworks-part-1-jquery/comment-page-1/#comment-725</link>
		<dc:creator>One of these days, hopefully soon&#8230;. &#124; Developer's Desk</dc:creator>
		<pubDate>Wed, 15 Apr 2009 15:40:14 +0000</pubDate>
		<guid isPermaLink="false">http://mdrisser.r1designs.net/blog/?p=63#comment-725</guid>
		<description>[...] get around to finishing the series I started comparing JavaScript Frameworks. It&#8217;s been over 2 months since I started the series and so far I&#8217;ve only gotten the [...]</description>
		<content:encoded><![CDATA[<p>[...] get around to finishing the series I started comparing JavaScript Frameworks. It&#8217;s been over 2 months since I started the series and so far I&#8217;ve only gotten the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The jQuery UI &#8211; Part 1 The Dialog by IE user</title>
		<link>http://mdrisser.r1designs.net/blog/2008/05/16/the-jquery-ui-part-1-the-dialog/comment-page-1/#comment-721</link>
		<dc:creator>IE user</dc:creator>
		<pubDate>Tue, 31 Mar 2009 23:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://mdrisser.r1designs.net/blog/?p=3#comment-721</guid>
		<description>wow, this page is rife with javascript errors</description>
		<content:encoded><![CDATA[<p>wow, this page is rife with javascript errors</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The jQuery UI &#8211; Part 1 The Dialog by faisal</title>
		<link>http://mdrisser.r1designs.net/blog/2008/05/16/the-jquery-ui-part-1-the-dialog/comment-page-1/#comment-720</link>
		<dc:creator>faisal</dc:creator>
		<pubDate>Tue, 31 Mar 2009 12:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://mdrisser.r1designs.net/blog/?p=3#comment-720</guid>
		<description>thanks you. it is very useful for me,</description>
		<content:encoded><![CDATA[<p>thanks you. it is very useful for me,</p>
]]></content:encoded>
	</item>
</channel>
</rss>
