<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for Trevor Davis</title>
	
	<link>http://trevordavis.net</link>
	<description>Doing That Web Standards Thing</description>
	<lastBuildDate>Sun, 12 Jul 2009 18:47:06 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/TrevorDavisComments" type="application/rss+xml" /><item>
		<title>Comment on Improved Navigation Image Replacement by Waleed Eissa</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/Z-jduifnb3I/</link>
		<dc:creator>Waleed Eissa</dc:creator>
		<pubDate>Sun, 12 Jul 2009 18:47:06 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=15#comment-3193</guid>
		<description>I wrote almost the same code and have been struggling all day long to get it to work with IE6. Your fix works like a charm! thanks for sharing</description>
		<content:encoded><![CDATA[<p>I wrote almost the same code and have been struggling all day long to get it to work with IE6. Your fix works like a charm! thanks for sharing</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/Z-jduifnb3I" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/improved-navigation-image-replacement/#comment-3193</feedburner:origLink></item>
	<item>
		<title>Comment on Set a Body Id Using PHP by Yoosuf</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/CdBf4a7oto8/</link>
		<dc:creator>Yoosuf</dc:creator>
		<pubDate>Sun, 12 Jul 2009 17:05:55 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=195#comment-3192</guid>
		<description>What do you think about this method?

post_parent; // test to see if this it a parent
$postID = $post-&gt;ID; // get this post's ID
$ancestors = get_post_ancestors($post);
$top = end($ancestors);

if($isparent == '0') { // if there is no parent, grab this page's name
$getname = get_post($postID);
} else {
$getname = get_post($top);
}
$toplevel = ' id="' . $getname-&gt;post_name . '" class="page"';
} else if(is_category()) { // if we're on a category listing
$cat = get_query_var('cat');
$parents = get_category_parents($cat,FALSE,'^',TRUE);
$get_parent = explode('^',$parents);
$toplevel = ' id="' . $get_parent[0] . ‘” class=”category”‘;
} else if(is_single()) { // if this is a single post page
$toplevel = ‘ id=”single”‘;
}
echo $toplevel;
} ?&gt;
</description>
		<content:encoded><![CDATA[<p>What do you think about this method?</p>
<p>post_parent; // test to see if this it a parent<br />
$postID = $post-&gt;ID; // get this post&#8217;s ID<br />
$ancestors = get_post_ancestors($post);<br />
$top = end($ancestors);</p>
<p>if($isparent == &#8216;0&#8217;) { // if there is no parent, grab this page&#8217;s name<br />
$getname = get_post($postID);<br />
} else {<br />
$getname = get_post($top);<br />
}<br />
$toplevel = &#8217; id=&#8221;&#8217; . $getname-&gt;post_name . &#8216;&#8221; class=&#8221;page&#8221;&#8217;;<br />
} else if(is_category()) { // if we&#8217;re on a category listing<br />
$cat = get_query_var(&#8216;cat&#8217;);<br />
$parents = get_category_parents($cat,FALSE,&#8217;^&#8217;,TRUE);<br />
$get_parent = explode(&#8216;^&#8217;,$parents);<br />
$toplevel = &#8217; id=&#8221;&#8217; . $get_parent[0] . ‘” class=”category”‘;<br />
} else if(is_single()) { // if this is a single post page<br />
$toplevel = ‘ id=”single”‘;<br />
}<br />
echo $toplevel;<br />
} ?&gt;</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/CdBf4a7oto8" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/set-a-body-id/#comment-3192</feedburner:origLink></item>
	<item>
		<title>Comment on WordPress &amp; jQuery Contact Form without a Plugin by kristian</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/ARrnVRA2_a4/</link>
		<dc:creator>kristian</dc:creator>
		<pubDate>Sat, 11 Jul 2009 03:10:59 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1647#comment-3189</guid>
		<description>Trevor,

I've gotten your code to work just fine when on a page.

However, I'm attempting to stick this in my index.php file... and obviously its not working because there is an issue with the url of the form action.

what do you suggest i use for that form action url?

On click it says "thanks" etc etc, but its really not working because it wont send. (but it does send when in a page)</description>
		<content:encoded><![CDATA[<p>Trevor,</p>
<p>I&#8217;ve gotten your code to work just fine when on a page.</p>
<p>However, I&#8217;m attempting to stick this in my index.php file&#8230; and obviously its not working because there is an issue with the url of the form action.</p>
<p>what do you suggest i use for that form action url?</p>
<p>On click it says &#8220;thanks&#8221; etc etc, but its really not working because it wont send. (but it does send when in a page)</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/ARrnVRA2_a4" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/wordpress-jquery-contact-form-without-a-plugin/#comment-3189</feedburner:origLink></item>
	<item>
		<title>Comment on The Ultimate PNG Guide – Example 2 by Fix PNG files for Internet Explorer 5 &amp; 6  | Digital Explosion</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/aGGmOyEb6rg/</link>
		<dc:creator>Fix PNG files for Internet Explorer 5 &amp; 6  | Digital Explosion</dc:creator>
		<pubDate>Thu, 09 Jul 2009 18:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/play/pngs/example-2/#comment-3180</guid>
		<description>[...] in IE6, the PNGs have a blue glow around them. So if we apply the Dean Edwards scripts to the page, we see the bottom image disappears (keep in mind you have to be looking in IE6 to see this [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] in IE6, the PNGs have a blue glow around them. So if we apply the Dean Edwards scripts to the page, we see the bottom image disappears (keep in mind you have to be looking in IE6 to see this [&#8230;]</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/aGGmOyEb6rg" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/play/pngs/example-2/#comment-3180</feedburner:origLink></item>
	<item>
		<title>Comment on How to Preload Images When You Can’t Use CSS Sprites by The Mystery Of CSS Sprites: Techniques, Tools And Tutorials « Ramesh</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/KqzvPsTMg7E/</link>
		<dc:creator>The Mystery Of CSS Sprites: Techniques, Tools And Tutorials « Ramesh</dc:creator>
		<pubDate>Thu, 09 Jul 2009 11:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=765#comment-3174</guid>
		<description>[...] How to Preload Images When You Can’t Use CSS Sprites This article addresses the problem that occurs with CSS sprites when the user resizes text. The idea is to combine the images into two images, rather than one. Then you place the image being shown on hover as the background image of another element (preferably a containing element), positioned just off screen. [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] How to Preload Images When You Can’t Use CSS Sprites This article addresses the problem that occurs with CSS sprites when the user resizes text. The idea is to combine the images into two images, rather than one. Then you place the image being shown on hover as the background image of another element (preferably a containing element), positioned just off screen. [&#8230;]</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/KqzvPsTMg7E" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/how-to-preload-images-when-you-cant-use-css-sprites/#comment-3174</feedburner:origLink></item>
	<item>
		<title>Comment on Input vs. Button by Nikita Sumeiko</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/7DDySdnCxxE/</link>
		<dc:creator>Nikita Sumeiko</dc:creator>
		<pubDate>Wed, 08 Jul 2009 16:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=211#comment-3164</guid>
		<description>But we can to use input with clear css code to display in the same way in all the major browsers. And, maybe, we shouldn't compare them?!

I have made a tutorial about how to code cross-browser sliding door input button. This means that we could use this way to display our button clear for now.

Here it is: http://www.manakor.org/xhtml/cross-browser-sliding-door-input-button/

But, of course, I'd like to say thanks to you, because, to be true, I used to you method on my site before.</description>
		<content:encoded><![CDATA[<p>But we can to use input with clear css code to display in the same way in all the major browsers. And, maybe, we shouldn&#8217;t compare them?!</p>
<p>I have made a tutorial about how to code cross-browser sliding door input button. This means that we could use this way to display our button clear for now.</p>
<p>Here it is: <a href="http://www.manakor.org/xhtml/cross-browser-sliding-door-input-button/" rel="nofollow">http://www.manakor.org/xhtml/cross-browser-sliding-door-input-button/</a></p>
<p>But, of course, I&#8217;d like to say thanks to you, because, to be true, I used to you method on my site before.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/7DDySdnCxxE" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/input-vs-button/#comment-3164</feedburner:origLink></item>
	<item>
		<title>Comment on WordPress &amp; jQuery Contact Form without a Plugin by Plugin Killer Series for WordPress: The End | Bin-Blog</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/FLJqQDD60lM/</link>
		<dc:creator>Plugin Killer Series for WordPress: The End | Bin-Blog</dc:creator>
		<pubDate>Sun, 05 Jul 2009 18:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1647#comment-3148</guid>
		<description>[...] WordPress &amp; jQuery Contact Form without a Plugin [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] WordPress &amp; jQuery Contact Form without a Plugin [&#8230;]</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/FLJqQDD60lM" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/wordpress-jquery-contact-form-without-a-plugin/#comment-3148</feedburner:origLink></item>
	<item>
		<title>Comment on Ajax Forms with jQuery by 150 Worth Knowing Web Developer Tools and Techniques | tripwire magazine</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/7flHD9AeDzk/</link>
		<dc:creator>150 Worth Knowing Web Developer Tools and Techniques | tripwire magazine</dc:creator>
		<pubDate>Sat, 04 Jul 2009 21:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=30#comment-3146</guid>
		<description>[...] jQuery Contact Form [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] jQuery Contact Form [&#8230;]</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/7flHD9AeDzk" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/ajax-forms-with-jquery/#comment-3146</feedburner:origLink></item>
	<item>
		<title>Comment on Ajax Forms with jQuery by Sanam Maharjan</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/E81GSASaC3E/</link>
		<dc:creator>Sanam Maharjan</dc:creator>
		<pubDate>Fri, 03 Jul 2009 10:12:01 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=30#comment-3145</guid>
		<description>Hello Trevor,
       

    $(".addressDiv span").live("mouseover", function(){
    //clickable function here......
    ------------------------
    });


I have used the above  live() event to trigger the function on mouseover in the dynamically added elements. But the problem i got is that once the live event is called it takes the class of the element and stores. And when the class of that particular element is changed dynamically the live() event does not detect the new class  added dynamically, instead it takes the former class. Live() event does not update the class.  How can I solve this problem?</description>
		<content:encoded><![CDATA[<p>Hello Trevor,</p>
<p>    $(&#8220;.addressDiv span&#8221;).live(&#8220;mouseover&#8221;, function(){<br />
    //clickable function here&#8230;&#8230;<br />
    &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
    });</p>
<p>I have used the above  live() event to trigger the function on mouseover in the dynamically added elements. But the problem i got is that once the live event is called it takes the class of the element and stores. And when the class of that particular element is changed dynamically the live() event does not detect the new class  added dynamically, instead it takes the former class. Live() event does not update the class.  How can I solve this problem?</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/E81GSASaC3E" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/ajax-forms-with-jquery/#comment-3145</feedburner:origLink></item>
	<item>
		<title>Comment on WordPress &amp; jQuery Contact Form without a Plugin by Trevor</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/t6wFxZ_Jv48/</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Thu, 02 Jul 2009 14:08:06 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1647#comment-3142</guid>
		<description>@&lt;a href="#comment-3140" rel="nofollow"&gt;akber kabir&lt;/a&gt;-
You will want to validate the field similarly to how the email address is validated, you will just need to use a &lt;a href="http://regexlib.com/DisplayPatterns.aspx?cattabindex=1&amp;categoryId=2" rel="nofollow"&gt;URL regular expression&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3140" rel="nofollow">akber kabir</a>-<br />
You will want to validate the field similarly to how the email address is validated, you will just need to use a <a href="http://regexlib.com/DisplayPatterns.aspx?cattabindex=1&amp;categoryId=2" rel="nofollow">URL regular expression</a>.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/t6wFxZ_Jv48" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/wordpress-jquery-contact-form-without-a-plugin/#comment-3142</feedburner:origLink></item>
	<item>
		<title>Comment on Ajax Forms with jQuery by iwanttobelieve</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/-g3RjNvpGSs/</link>
		<dc:creator>iwanttobelieve</dc:creator>
		<pubDate>Thu, 02 Jul 2009 10:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=30#comment-3141</guid>
		<description>Very nice script ;)</description>
		<content:encoded><![CDATA[<p>Very nice script ;)</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/-g3RjNvpGSs" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/ajax-forms-with-jquery/#comment-3141</feedburner:origLink></item>
	<item>
		<title>Comment on WordPress &amp; jQuery Contact Form without a Plugin by akber kabir</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/jwqmExaHIoM/</link>
		<dc:creator>akber kabir</dc:creator>
		<pubDate>Thu, 02 Jul 2009 07:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1647#comment-3140</guid>
		<description>Hi, thanks a lot for such a beautiful tutorial, i have a question, 

could you please show me how can i add a text field that will validate an URL?

thanks</description>
		<content:encoded><![CDATA[<p>Hi, thanks a lot for such a beautiful tutorial, i have a question, </p>
<p>could you please show me how can i add a text field that will validate an URL?</p>
<p>thanks</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/jwqmExaHIoM" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/wordpress-jquery-contact-form-without-a-plugin/#comment-3140</feedburner:origLink></item>
	<item>
		<title>Comment on Enough with the IE6 Whining by Trevor</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/T1sm5PdgX9E/</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Wed, 01 Jul 2009 18:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1979#comment-3138</guid>
		<description>@&lt;a href="#comment-3137" rel="nofollow"&gt;Jeffrey Brown&lt;/a&gt;-
Ahh, excellent point. I can deal with people who are just getting started complaining about it. But if you have been working on the web for a year or so, I have a problem with it.</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3137" rel="nofollow">Jeffrey Brown</a>-<br />
Ahh, excellent point. I can deal with people who are just getting started complaining about it. But if you have been working on the web for a year or so, I have a problem with it.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/T1sm5PdgX9E" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/web/enough-with-the-ie6-whining/#comment-3138</feedburner:origLink></item>
	<item>
		<title>Comment on Enough with the IE6 Whining by Jeffrey Brown</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/Gal8x7uKmTM/</link>
		<dc:creator>Jeffrey Brown</dc:creator>
		<pubDate>Wed, 01 Jul 2009 17:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1979#comment-3137</guid>
		<description>I totally agree with Trevor, I have had it up to *here* with IE6 bitching.

However, we must realize that everyone goes through a different timeline of learning.  Some people are just wrapping their head around CSS and just finding out about how IE6's market share and the faulty ways it interprets the elements.  So while I agree, we need to keep in mind that at some point when "we" began moaning, someone somewhere was probably rolling their eyes saying, "Here we go again".</description>
		<content:encoded><![CDATA[<p>I totally agree with Trevor, I have had it up to *here* with IE6 bitching.</p>
<p>However, we must realize that everyone goes through a different timeline of learning.  Some people are just wrapping their head around CSS and just finding out about how IE6&#8217;s market share and the faulty ways it interprets the elements.  So while I agree, we need to keep in mind that at some point when &quot;we&quot; began moaning, someone somewhere was probably rolling their eyes saying, &quot;Here we go again&quot;.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/Gal8x7uKmTM" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/web/enough-with-the-ie6-whining/#comment-3137</feedburner:origLink></item>
	<item>
		<title>Comment on Enough with the IE6 Whining by Trevor</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/FfJXaK1Y1y0/</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Wed, 01 Jul 2009 14:13:09 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1979#comment-3136</guid>
		<description>@&lt;a href="#comment-3133" rel="nofollow"&gt;Andy Pemberton&lt;/a&gt;-
Haha yes, it was a rant on ranting.

@&lt;a href="#comment-3134" rel="nofollow"&gt;Steve Rydz&lt;/a&gt;-
I think it was perfectly ok to complain about it for a while, but now that newer versions have been released, they need to stop wasting their breath.

@&lt;a href="#comment-3135" rel="nofollow"&gt;Nate&lt;/a&gt;-
Absolutely IE6 compliance has hampered the web, but I think we are beyond that. There is virtually no reason that you should spend a significant amount of time trying to make IE6 look &lt;strong&gt;exactly&lt;/strong&gt; like more standards compliant browsers.

Instead of using that PNG, just use a GIF. No user is ever going to pull up the site in another browser and compare it, so they won’t even know the difference.

While absolutely I do still spent time supporting IE6, I am just making sure that it doesn’t look broken. I can deal with doubled margins here or squared corners there. I have learned to embrace that it’s inefficient to spend time trying to make sure that pixels match up in all browsers, and I laugh at job descriptions that have “pixel perfect slicing” in them. Clearly they don’t understand the current state of the web.</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3133" rel="nofollow">Andy Pemberton</a>-<br />
Haha yes, it was a rant on ranting.</p>
<p>@<a href="#comment-3134" rel="nofollow">Steve Rydz</a>-<br />
I think it was perfectly ok to complain about it for a while, but now that newer versions have been released, they need to stop wasting their breath.</p>
<p>@<a href="#comment-3135" rel="nofollow">Nate</a>-<br />
Absolutely IE6 compliance has hampered the web, but I think we are beyond that. There is virtually no reason that you should spend a significant amount of time trying to make IE6 look <strong>exactly</strong> like more standards compliant browsers.</p>
<p>Instead of using that PNG, just use a GIF. No user is ever going to pull up the site in another browser and compare it, so they won&rsquo;t even know the difference.</p>
<p>While absolutely I do still spent time supporting IE6, I am just making sure that it doesn&rsquo;t look broken. I can deal with doubled margins here or squared corners there. I have learned to embrace that it&rsquo;s inefficient to spend time trying to make sure that pixels match up in all browsers, and I laugh at job descriptions that have &ldquo;pixel perfect slicing&rdquo; in them. Clearly they don&rsquo;t understand the current state of the web.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/FfJXaK1Y1y0" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/web/enough-with-the-ie6-whining/#comment-3136</feedburner:origLink></item>
	<item>
		<title>Comment on Enough with the IE6 Whining by Nate</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/4TAwp9BEZo8/</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Wed, 01 Jul 2009 12:36:05 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1979#comment-3135</guid>
		<description>Can't say I agree with the tone or thrust of this entry, Trevor, though you're certainly entitled to your opinion.

I'll admit that I've sometimes made it a point of pride that I seldom have to use IE-specific hacks, or that I could make something look as good in IE6 as in other browsers. But those days have gotten old.

IE6 compliance has forced us to keep too many features from web pages, and--Microsoft's fault or not--people are right to begin agitating for something like a final push to drop the browser. 

Most solutions for IE6's fundamental faults are partial. As you well know, Dean Edwards script has problems. A script I use for PNG replacement, DD belatedPNG caused conflicts with SWFAddress in the last site I worked on.

And for most people, unless they're willing to go the route of the suggested Universal Stylesheet (a decision most developers don't get to make for the sites they work on), they're stuck spending a disproportionate amount of their time fiddling to make stuff work on the problem child of browsers, or not implementing the quickest, most efficient CSS or Javascript because IE6 has to be provided for.

Surely you can bear a bit of complaining.</description>
		<content:encoded><![CDATA[<p>Can&#8217;t say I agree with the tone or thrust of this entry, Trevor, though you&#8217;re certainly entitled to your opinion.</p>
<p>I&#8217;ll admit that I&#8217;ve sometimes made it a point of pride that I seldom have to use IE-specific hacks, or that I could make something look as good in IE6 as in other browsers. But those days have gotten old.</p>
<p>IE6 compliance has forced us to keep too many features from web pages, and&#8212;Microsoft&#8217;s fault or not&#8212;people are right to begin agitating for something like a final push to drop the browser. </p>
<p>Most solutions for IE6&#8217;s fundamental faults are partial. As you well know, Dean Edwards script has problems. A script I use for PNG replacement, DD belatedPNG caused conflicts with SWFAddress in the last site I worked on.</p>
<p>And for most people, unless they&#8217;re willing to go the route of the suggested Universal Stylesheet (a decision most developers don&#8217;t get to make for the sites they work on), they&#8217;re stuck spending a disproportionate amount of their time fiddling to make stuff work on the problem child of browsers, or not implementing the quickest, most efficient CSS or Javascript because IE6 has to be provided for.</p>
<p>Surely you can bear a bit of complaining.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/4TAwp9BEZo8" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/web/enough-with-the-ie6-whining/#comment-3135</feedburner:origLink></item>
	<item>
		<title>Comment on Enough with the IE6 Whining by Steve Rydz</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/kdlk17twHjM/</link>
		<dc:creator>Steve Rydz</dc:creator>
		<pubDate>Wed, 01 Jul 2009 08:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1979#comment-3134</guid>
		<description>I couldn't agree more Trevor. We all know IE6 sucks. I find it ironic that the people that complain the most are people who complain that it is 11 years old. Does that mean they've been complaining for that long?

In my experience as long as you adhere to web standards IE6 isn't too bad. OK, the sidebar might not line up as you wanted or that transparent PNG has a funny outline on it but at least the content is accessible.

As you say, if the amount of effort required to make IE6 play ball is not equal to the number of people actually visiting your site in that browser then Andy Clarke's Universal IE6 Stylesheet is perfect for the job. Failing that the Dean Edwards script is also pretty useful.

Sorry for the overlong comment mate, it's just nice to hear a voice of reason ;-)</description>
		<content:encoded><![CDATA[<p>I couldn&#8217;t agree more Trevor. We all know IE6 sucks. I find it ironic that the people that complain the most are people who complain that it is 11 years old. Does that mean they&#8217;ve been complaining for that long?</p>
<p>In my experience as long as you adhere to web standards IE6 isn&#8217;t too bad. OK, the sidebar might not line up as you wanted or that transparent PNG has a funny outline on it but at least the content is accessible.</p>
<p>As you say, if the amount of effort required to make IE6 play ball is not equal to the number of people actually visiting your site in that browser then Andy Clarke&#8217;s Universal IE6 Stylesheet is perfect for the job. Failing that the Dean Edwards script is also pretty useful.</p>
<p>Sorry for the overlong comment mate, it&#8217;s just nice to hear a voice of reason ;-)</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/kdlk17twHjM" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/web/enough-with-the-ie6-whining/#comment-3134</feedburner:origLink></item>
	<item>
		<title>Comment on Enough with the IE6 Whining by Andy Pemberton</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/7TBaY80omSI/</link>
		<dc:creator>Andy Pemberton</dc:creator>
		<pubDate>Wed, 01 Jul 2009 06:55:57 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1979#comment-3133</guid>
		<description>Hate to do it, but... is this a rant on ranting? A complaint on complaining? I guess that makes it meta-whining? 

But, I agree with you - I feel like people either whine about IE6 because a) they're a newb, b) not talented as you hint, or c) looking for blog readers.</description>
		<content:encoded><![CDATA[<p>Hate to do it, but&#8230; is this a rant on ranting? A complaint on complaining? I guess that makes it meta-whining? </p>
<p>But, I agree with you - I feel like people either whine about IE6 because a) they&#8217;re a newb, b) not talented as you hint, or c) looking for blog readers.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/7TBaY80omSI" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/web/enough-with-the-ie6-whining/#comment-3133</feedburner:origLink></item>
	<item>
		<title>Comment on WordPress &amp; jQuery Contact Form without a Plugin by Trevor</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/WImMtBV3ULo/</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Sat, 27 Jun 2009 15:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1647#comment-3127</guid>
		<description>@&lt;a href="#comment-3126" rel="nofollow"&gt;Guresh&lt;/a&gt;-
There is already honeypot captcha added to the form. You could easily add in something else as well.</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3126" rel="nofollow">Guresh</a>-<br />
There is already honeypot captcha added to the form. You could easily add in something else as well.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/WImMtBV3ULo" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/wordpress-jquery-contact-form-without-a-plugin/#comment-3127</feedburner:origLink></item>
	<item>
		<title>Comment on WordPress &amp; jQuery Contact Form without a Plugin by Guresh</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/jSlLgCDd-cE/</link>
		<dc:creator>Guresh</dc:creator>
		<pubDate>Sat, 27 Jun 2009 11:18:16 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1647#comment-3126</guid>
		<description>It would be good if add spam prevention feature.</description>
		<content:encoded><![CDATA[<p>It would be good if add spam prevention feature.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/jSlLgCDd-cE" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/wordpress-jquery-contact-form-without-a-plugin/#comment-3126</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Tabbed Navigation by 25 jQuery Tutorials for Improved Navigation Menus | brainstorming magazine | use the brain to get ideas</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/EgtZ31ytHrk/</link>
		<dc:creator>25 jQuery Tutorials for Improved Navigation Menus | brainstorming magazine | use the brain to get ideas</dc:creator>
		<pubDate>Sat, 27 Jun 2009 10:06:53 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=359#comment-3125</guid>
		<description>[...] jQuery Tabbed Navigation [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] jQuery Tabbed Navigation [&#8230;]</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/EgtZ31ytHrk" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-tabbed-navigation/#comment-3125</feedburner:origLink></item>
	<item>
		<title>Comment on Ajax Forms with jQuery by Jeff</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/hfyCnb8UC6g/</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Thu, 25 Jun 2009 16:34:03 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=30#comment-3123</guid>
		<description>Nice article, I was looking for how to make ajax calls using the jQuery library (I was one of the people making 2 functions everytime I needed to retrieve data using an ajax call, and I found out the jQuery lib can save me a lot of time), thanks again for the info on how to do it.</description>
		<content:encoded><![CDATA[<p>Nice article, I was looking for how to make ajax calls using the jQuery library (I was one of the people making 2 functions everytime I needed to retrieve data using an ajax call, and I found out the jQuery lib can save me a lot of time), thanks again for the info on how to do it.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/hfyCnb8UC6g" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/ajax-forms-with-jquery/#comment-3123</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Vlad Bazon</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/qsCpnhLq29w/</link>
		<dc:creator>Vlad Bazon</dc:creator>
		<pubDate>Thu, 25 Jun 2009 07:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3122</guid>
		<description>Admirable your explanation, I like your style of describing things. I suggest this code reformulation:
&lt;pre&gt;&lt;code&gt;$('input[title]').each(function() {
    var qinp = $(this), title = qinp.attr('title');
    if(qinp.val() === '') qinp.val(title);

    qinp.focus(function() {
        if(qinp.val() === title)
            qinp.val('').addClass('focused');
    });

    qinp.blur(function() {
        if(qinp.val() === '')
            qinp.val(title).removeClass('focused');
    });
});&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Admirable your explanation, I like your style of describing things. I suggest this code reformulation:</p>
<pre><code>$('input[title]').each(function() {
    var qinp = $(this), title = qinp.attr('title');
    if(qinp.val() === '') qinp.val(title);

    qinp.focus(function() {
        if(qinp.val() === title)
            qinp.val('').addClass('focused');
    });

    qinp.blur(function() {
        if(qinp.val() === '')
            qinp.val(title).removeClass('focused');
    });
});</code></pre>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/qsCpnhLq29w" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3122</feedburner:origLink></item>
	<item>
		<title>Comment on Improving a Flickr Plugin with jQuery by Trevor</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/YjpwOQtawt0/</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Wed, 24 Jun 2009 15:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=226#comment-3121</guid>
		<description>@&lt;a href="#comment-3120" rel="nofollow"&gt;richyp147&lt;/a&gt;-
You cannot just paste in HTML code, you should encode the &lt; symbol with &lt;

You will need to concatenate the item.title and item.description strings into one string and add that as the title attribute.</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3120" rel="nofollow">richyp147</a>-<br />
You cannot just paste in HTML code, you should encode the &lt; symbol with &amp;lt;</p>
<p>You will need to concatenate the item.title and item.description strings into one string and add that as the title attribute.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/YjpwOQtawt0" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/improving-a-flickr-plugin-with-jquery/#comment-3121</feedburner:origLink></item>
	<item>
		<title>Comment on Improving a Flickr Plugin with jQuery by richyp147</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/tK3IBP18JJU/</link>
		<dc:creator>richyp147</dc:creator>
		<pubDate>Wed, 24 Jun 2009 12:09:01 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=226#comment-3120</guid>
		<description>@&lt;a href="#comment-3117" rel="nofollow"&gt;Trevor &lt;/a&gt;-

Sorry having trouble adding code here with: pre&gt;&lt;code&gt;YOUR CODE HERE&lt;/code&gt;

Meant to say all that is supported is the title attribure in lightbox, my implemented code is:

.wrap('&lt;a&gt;')</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3117" rel="nofollow">Trevor </a>-</p>
<p>Sorry having trouble adding code here with: pre&gt;<code>YOUR CODE HERE</code></p>
<p>Meant to say all that is supported is the title attribure in lightbox, my implemented code is:</p>
<p>.wrap(&#8216;<a>&#8217;)</a></p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/tK3IBP18JJU" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/improving-a-flickr-plugin-with-jquery/#comment-3120</feedburner:origLink></item>
	<item>
		<title>Comment on Improving a Flickr Plugin with jQuery by richyp147</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/LFrhvrezaQM/</link>
		<dc:creator>richyp147</dc:creator>
		<pubDate>Wed, 24 Jun 2009 12:06:35 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=226#comment-3119</guid>
		<description>@&lt;a href="#comment-3117" rel="nofollow"&gt;Trevor &lt;/a&gt;-

Ok I have the title pulled in now, but as far as I can gather there is no tag in lightbox that supports the description all that's available is:

&lt;code&gt;.wrap('&lt;a&gt;')&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3117" rel="nofollow">Trevor </a>-</p>
<p>Ok I have the title pulled in now, but as far as I can gather there is no tag in lightbox that supports the description all that&#8217;s available is:</p>
<p><code>.wrap('<a>')</a></code></p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/LFrhvrezaQM" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/improving-a-flickr-plugin-with-jquery/#comment-3119</feedburner:origLink></item>
	<item>
		<title>Comment on Improving a Flickr Plugin with jQuery by richyp147</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/l9PEWiI0wY4/</link>
		<dc:creator>richyp147</dc:creator>
		<pubDate>Wed, 24 Jun 2009 07:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=226#comment-3118</guid>
		<description>@&lt;a href="#comment-3117" rel="nofollow"&gt;Trevor &lt;/a&gt;-

Hi Trevor, Thanks for your help on this, ok so I have tried to add item.title and item.description to the each statement but all it gives me is an error... Help LOL</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3117" rel="nofollow">Trevor </a>-</p>
<p>Hi Trevor, Thanks for your help on this, ok so I have tried to add item.title and item.description to the each statement but all it gives me is an error&#8230; Help LOL</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/l9PEWiI0wY4" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/improving-a-flickr-plugin-with-jquery/#comment-3118</feedburner:origLink></item>
	<item>
		<title>Comment on Improving a Flickr Plugin with jQuery by Trevor</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/-QkGlLWb8iY/</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Tue, 23 Jun 2009 22:15:41 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=226#comment-3117</guid>
		<description>@&lt;a href="#comment-3116" rel="nofollow"&gt;richyp147&lt;/a&gt;-
Within your each statement, you want to access item.title and item.description. Then, you will want to concatenate those strings and add them as a title attribute to each individual item.</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3116" rel="nofollow">richyp147</a>-<br />
Within your each statement, you want to access item.title and item.description. Then, you will want to concatenate those strings and add them as a title attribute to each individual item.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/-QkGlLWb8iY" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/improving-a-flickr-plugin-with-jquery/#comment-3117</feedburner:origLink></item>
	<item>
		<title>Comment on Improving a Flickr Plugin with jQuery by richyp147</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/1I87-yAqYb4/</link>
		<dc:creator>richyp147</dc:creator>
		<pubDate>Tue, 23 Jun 2009 19:24:59 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=226#comment-3116</guid>
		<description>@&lt;a href="#comment-3114" rel="nofollow"&gt;Trevor &lt;/a&gt;-

I thought these might work, but I havetried them everywhere and I can't get it going...

$("#title").html(data.title);
  $("#description").html(data.description);</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3114" rel="nofollow">Trevor </a>-</p>
<p>I thought these might work, but I havetried them everywhere and I can&#8217;t get it going&#8230;</p>
<p>$(&#8220;#title&#8221;).html(data.title);<br />
  $(&#8220;#description&#8221;).html(data.description);</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/1I87-yAqYb4" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/improving-a-flickr-plugin-with-jquery/#comment-3116</feedburner:origLink></item>
	<item>
		<title>Comment on Improving a Flickr Plugin with jQuery by richyp147</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/cqBd1xbI4RQ/</link>
		<dc:creator>richyp147</dc:creator>
		<pubDate>Tue, 23 Jun 2009 19:17:52 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=226#comment-3115</guid>
		<description>@&lt;a href="#comment-3114" rel="nofollow"&gt;Trevor &lt;/a&gt;-

Sorry to be a pain but could you show me how in the code below... I'm still a newbe on this and it took me long enough to figure this out.

&lt;pre&gt;&lt;code&gt;$(document).ready(function() {
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=39724364@N04&amp;lang=en-us&amp;format=json&amp;jsoncallback=?", function(data){
$.each(data.items, function(i,item){
if(i&lt;=11){
$("").attr("src", item.media.m).appendTo("#FlickrImages ul")
.wrap('&lt;a&gt;')
.wrap("")
}
});
$('a[@rel*=lightbox]').lightBox();
});
});&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3114" rel="nofollow">Trevor </a>-</p>
<p>Sorry to be a pain but could you show me how in the code below&#8230; I&#8217;m still a newbe on this and it took me long enough to figure this out.</p>
<pre><code>$(document).ready(function() {
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=39724364@N04&amp;lang=en-us&amp;format=json&amp;jsoncallback=?", function(data){
$.each(data.items, function(i,item){
if(i&lt;=11){
$(&quot;").attr("src", item.media.m).appendTo("#FlickrImages ul")
.wrap('&lt;a>')
.wrap("")
}
});
$('a[@rel*=lightbox]').lightBox();
});
});</code></pre>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/cqBd1xbI4RQ" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/improving-a-flickr-plugin-with-jquery/#comment-3115</feedburner:origLink></item>
	<item>
		<title>Comment on Improving a Flickr Plugin with jQuery by Trevor</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/2FA5qvuKTdI/</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Tue, 23 Jun 2009 18:44:13 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=226#comment-3114</guid>
		<description>@&lt;a href="#comment-3113" rel="nofollow"&gt;richyp147&lt;/a&gt;-
The title attribute of the link is what is pulled into the lightbox caption. 

So if you just include the title and description from the JSON call as the title attribute, you should be good.</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3113" rel="nofollow">richyp147</a>-<br />
The title attribute of the link is what is pulled into the lightbox caption. </p>
<p>So if you just include the title and description from the JSON call as the title attribute, you should be good.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/2FA5qvuKTdI" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/improving-a-flickr-plugin-with-jquery/#comment-3114</feedburner:origLink></item>
	<item>
		<title>Comment on Improving a Flickr Plugin with jQuery by richyp147</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/VmiqlcFuSmg/</link>
		<dc:creator>richyp147</dc:creator>
		<pubDate>Tue, 23 Jun 2009 18:40:57 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=226#comment-3113</guid>
		<description>@&lt;a href="#comment-1139" rel="nofollow"&gt;Trevor &lt;/a&gt;-
Hi, I have just implemented your excellent tutorial and added lightbox as well, I have it all working BUT was wondering whether it is possible to pull in flickr picture title and description to the lightbox white area?

This is the code I have implemented so far... Hope you can help

&lt;pre&gt;&lt;code&gt;$(document).ready(function() {
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=39724364@N04&amp;lang=en-us&amp;format=json&amp;jsoncallback=?", function(data){
$.each(data.items, function(i,item){
if(i&lt;=11){
$("").attr("src", item.media.m).appendTo("#FlickrImages ul")
.wrap('&lt;a&gt;')
.wrap("")
}
});
$('a[@rel*=lightbox]').lightBox();
});
});&lt;/code&gt;&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-1139" rel="nofollow">Trevor </a>-<br />
Hi, I have just implemented your excellent tutorial and added lightbox as well, I have it all working BUT was wondering whether it is possible to pull in flickr picture title and description to the lightbox white area?</p>
<p>This is the code I have implemented so far&#8230; Hope you can help</p>
<pre><code>$(document).ready(function() {
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=39724364@N04&amp;lang=en-us&amp;format=json&amp;jsoncallback=?", function(data){
$.each(data.items, function(i,item){
if(i&lt;=11){
$(&quot;").attr("src", item.media.m).appendTo("#FlickrImages ul")
.wrap('&lt;a>')
.wrap("")
}
});
$('a[@rel*=lightbox]').lightBox();
});
});</code></pre>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/VmiqlcFuSmg" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/improving-a-flickr-plugin-with-jquery/#comment-3113</feedburner:origLink></item>
	<item>
		<title>Comment on The 6 Most Important CSS Techniques You Need To Know by 15 Effective Tips and Tricks from the Masters of CSS | SeanBurdick</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/tJppi_1hj4g/</link>
		<dc:creator>15 Effective Tips and Tricks from the Masters of CSS | SeanBurdick</dc:creator>
		<pubDate>Tue, 23 Jun 2009 06:02:36 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=169#comment-3111</guid>
		<description>[...] Trevor Davis: Set a Consistent Base Font Size [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Trevor Davis: Set a Consistent Base Font Size [&#8230;]</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/tJppi_1hj4g" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/the-6-most-important-css-techniques-you-need-to-know/#comment-3111</feedburner:origLink></item>
	<item>
		<title>Comment on Review: Building Websites with ExpressionEngine 1.6 by matt mcinvale</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/Ny_LhtXnK38/</link>
		<dc:creator>matt mcinvale</dc:creator>
		<pubDate>Mon, 22 Jun 2009 20:41:14 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1756#comment-3110</guid>
		<description>i got annoyed with long HTML and CSS  snippets *yawn*</description>
		<content:encoded><![CDATA[<p>i got annoyed with long HTML and CSS  snippets *yawn*</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/Ny_LhtXnK38" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/web/review-building-websites-with-expression-engine/#comment-3110</feedburner:origLink></item>
	<item>
		<title>Comment on Remember, You are the Expert by matt mcinvale</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/Fh4i9YMBAsQ/</link>
		<dc:creator>matt mcinvale</dc:creator>
		<pubDate>Mon, 22 Jun 2009 20:36:25 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1914#comment-3109</guid>
		<description>an informed client will normally change their mind on a "silly" request if you guide them, sometimes it's impossible though. :(</description>
		<content:encoded><![CDATA[<p>an informed client will normally change their mind on a &#8220;silly&#8221; request if you guide them, sometimes it&#8217;s impossible though. :(</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/Fh4i9YMBAsQ" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/thoughts/remember-you-are-the-expert/#comment-3109</feedburner:origLink></item>
	<item>
		<title>Comment on Use jQuery to Enhance your WordPress Comment Form by user</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/eRessohNzSU/</link>
		<dc:creator>user</dc:creator>
		<pubDate>Fri, 19 Jun 2009 10:25:57 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1253#comment-3108</guid>
		<description>cool, exactly what i was seeking for, thanks</description>
		<content:encoded><![CDATA[<p>cool, exactly what i was seeking for, thanks</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/eRessohNzSU" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/use-jquery-to-enhance-your-wordpress-comment-form/#comment-3108</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Josh</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/Yn1WJG-74KM/</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Thu, 18 Jun 2009 19:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3105</guid>
		<description>GREAT example!  Thanks for sharing!</description>
		<content:encoded><![CDATA[<p>GREAT example!  Thanks for sharing!</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/Yn1WJG-74KM" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3105</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Stephen Cronin</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/7Ce_vuaCja0/</link>
		<dc:creator>Stephen Cronin</dc:creator>
		<pubDate>Thu, 18 Jun 2009 01:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3102</guid>
		<description>It's a nice approach, but I need to make sure that a) required fields don't have the default text and b) the optional fields are reset to blank on submit.

I know you said to Jules that we'll need to change our JavaScript validation rules to cater for this stuff. That's not a problem, but really we need to modify our server side validation as well, which makes it a little more complicated.

I'm thinking about clever ways to do this - perhaps assign the descriptions to variables, then use them in both processing the _POST values and in generating the form...

Anyway, thanks!</description>
		<content:encoded><![CDATA[<p>It&#8217;s a nice approach, but I need to make sure that a) required fields don&#8217;t have the default text and b) the optional fields are reset to blank on submit.</p>
<p>I know you said to Jules that we&#8217;ll need to change our JavaScript validation rules to cater for this stuff. That&#8217;s not a problem, but really we need to modify our server side validation as well, which makes it a little more complicated.</p>
<p>I&#8217;m thinking about clever ways to do this - perhaps assign the descriptions to variables, then use them in both processing the _POST values and in generating the form&#8230;</p>
<p>Anyway, thanks!</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/7Ce_vuaCja0" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3102</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Mike Cravey » Accessible Inline Form Labels</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/KVv_HEYRgLw/</link>
		<dc:creator>Mike Cravey » Accessible Inline Form Labels</dc:creator>
		<pubDate>Wed, 17 Jun 2009 18:31:50 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3101</guid>
		<description>[...] as accessibility, css, forms, html, js, labels with 0  I recently read Trevor Davis‘ post on inline form labels. First off, I have the utmost respect for TD. I read his blog regularly and have learned a lot from [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] as accessibility, css, forms, html, js, labels with 0  I recently read Trevor Davis&#8216; post on inline form labels. First off, I have the utmost respect for TD. I read his blog regularly and have learned a lot from [&#8230;]</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/KVv_HEYRgLw" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3101</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Brian Cray</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/uGG3fZZGgpA/</link>
		<dc:creator>Brian Cray</dc:creator>
		<pubDate>Wed, 17 Jun 2009 15:06:28 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3100</guid>
		<description>ahhh... okay, didn't realize that sorry</description>
		<content:encoded><![CDATA[<p>ahhh&#8230; okay, didn&#8217;t realize that sorry</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/uGG3fZZGgpA" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3100</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Trevor</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/3toPvYixzoY/</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Wed, 17 Jun 2009 14:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3099</guid>
		<description>@&lt;a href="#comment-3098" rel="nofollow"&gt;Brian Cray&lt;/a&gt;-
Correct, I do not want to add the value into the actual HTML.</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3098" rel="nofollow">Brian Cray</a>-<br />
Correct, I do not want to add the value into the actual HTML.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/3toPvYixzoY" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3099</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Brian Cray</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/du8uNW5yUpU/</link>
		<dc:creator>Brian Cray</dc:creator>
		<pubDate>Wed, 17 Jun 2009 14:18:53 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3098</guid>
		<description>Retyping with encoding:

&lt;input type="text" value="value that will erase on focus /&gt;</description>
		<content:encoded><![CDATA[<p>Retyping with encoding:</p>
<p>&lt;input type=&#8221;text&#8221; value=&#8221;value that will erase on focus /&gt;</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/du8uNW5yUpU" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3098</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Brian Cray</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/C2pmvndROjo/</link>
		<dc:creator>Brian Cray</dc:creator>
		<pubDate>Wed, 17 Jun 2009 14:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3097</guid>
		<description>Trevor: Do you mean you were trying to avoid:

</description>
		<content:encoded><![CDATA[<p>Trevor: Do you mean you were trying to avoid:</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/C2pmvndROjo" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3097</feedburner:origLink></item>
	<item>
		<title>Comment on WordPress Tips and Ideas Learned From Implementation by Trevor</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/UDDf-1tuqus/</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Wed, 17 Jun 2009 14:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=231#comment-3096</guid>
		<description>@&lt;a href="#comment-3091" rel="nofollow"&gt;didjmaster&lt;/a&gt;-
I’m not sure if this is the place to get support for TimThumb support. You may want to contact the offer. I have never had any problems getting it working on 1and1 servers. Are you having problems with caching?</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3091" rel="nofollow">didjmaster</a>-<br />
I&rsquo;m not sure if this is the place to get support for TimThumb support. You may want to contact the offer. I have never had any problems getting it working on 1and1 servers. Are you having problems with caching?</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/UDDf-1tuqus" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/wordpress-tips-and-ideas-learned-from-implementation/#comment-3096</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Trevor</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/piH95l8Js1o/</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Wed, 17 Jun 2009 14:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3095</guid>
		<description>@&lt;a href="#comment-3094" rel="nofollow"&gt;Brian Cray&lt;/a&gt;-
I’m not sure what you mean. So are you saying to add the value attribute to the input? I was trying to avoid that.</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-3094" rel="nofollow">Brian Cray</a>-<br />
I&rsquo;m not sure what you mean. So are you saying to add the value attribute to the input? I was trying to avoid that.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/piH95l8Js1o" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3095</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Brian Cray</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/SRkOqEMIC3M/</link>
		<dc:creator>Brian Cray</dc:creator>
		<pubDate>Wed, 17 Jun 2009 14:07:05 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3094</guid>
		<description>Try using the input's defaultValue property instead, then there's no need to rely on title.

$('input').get(0).defaultValue</description>
		<content:encoded><![CDATA[<p>Try using the input&#8217;s defaultValue property instead, then there&#8217;s no need to rely on title.</p>
<p>$(&#8216;input&#8217;).get(0).defaultValue</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/SRkOqEMIC3M" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3094</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by The Technology Post for June 16th, 2009 | rapid-DEV.net</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/_vvUfk4Bak0/</link>
		<dc:creator>The Technology Post for June 16th, 2009 | rapid-DEV.net</dc:creator>
		<pubDate>Wed, 17 Jun 2009 10:57:27 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3093</guid>
		<description>[...] jQuery - jQuery Inline Form Labels – Trevor Davis (Suggested by Elijah Manor) [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] jQuery - jQuery Inline Form Labels – Trevor Davis (Suggested by Elijah Manor) [&#8230;]</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/_vvUfk4Bak0" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3093</feedburner:origLink></item>
	<item>
		<title>Comment on WordPress Tips and Ideas Learned From Implementation by didjmaster</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/0yY1NdFhBbo/</link>
		<dc:creator>didjmaster</dc:creator>
		<pubDate>Wed, 17 Jun 2009 06:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=231#comment-3091</guid>
		<description>Having a huge issue trying to get Timthumb to work properly.  SOME of my thumbnails on my home page work SOME of the time.  Other times, all work, and then sometimes different thumbnails stop working.  No indication of what it is, but i have tried a million things.

I am also on 1and1, using Mimbo Pro 1.5 (Wordpress 2.7).

I am thinking that 1and 1 might be blocking access to some of my files- that is why I am posting here.  I have tried everything else.  Anyone have an idea?
THanks.</description>
		<content:encoded><![CDATA[<p>Having a huge issue trying to get Timthumb to work properly.  SOME of my thumbnails on my home page work SOME of the time.  Other times, all work, and then sometimes different thumbnails stop working.  No indication of what it is, but i have tried a million things.</p>
<p>I am also on 1and1, using Mimbo Pro 1.5 (Wordpress 2.7).</p>
<p>I am thinking that 1and 1 might be blocking access to some of my files- that is why I am posting here.  I have tried everything else.  Anyone have an idea?<br />
THanks.</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/0yY1NdFhBbo" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/wordpress-tips-and-ideas-learned-from-implementation/#comment-3091</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Jason Persampieri</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/HyYNqsF_oDs/</link>
		<dc:creator>Jason Persampieri</dc:creator>
		<pubDate>Wed, 17 Jun 2009 02:13:06 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3090</guid>
		<description>That said, I've considered doing something fancy like overlaying a div above the element with the title-tip.  That way you don't have to deal with 'data-fixup' at all.  Hmm... perhaps that's an idea for my first 'real' jquery plugin :)</description>
		<content:encoded><![CDATA[<p>That said, I&#8217;ve considered doing something fancy like overlaying a div above the element with the title-tip.  That way you don&#8217;t have to deal with &#8216;data-fixup&#8217; at all.  Hmm&#8230; perhaps that&#8217;s an idea for my first &#8216;real&#8217; jquery plugin :)</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/HyYNqsF_oDs" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3090</feedburner:origLink></item>
	<item>
		<title>Comment on jQuery Inline Form Labels by Jason Persampieri</title>
		<link>http://feedproxy.google.com/~r/TrevorDavisComments/~3/WB3lZ3tSxio/</link>
		<dc:creator>Jason Persampieri</dc:creator>
		<pubDate>Wed, 17 Jun 2009 02:07:22 +0000</pubDate>
		<guid isPermaLink="false">http://trevordavis.net/?p=1938#comment-3089</guid>
		<description>I think most of us end up doing something similar.  The only difference in mine is I invert your 'class' usage.  Instead of toggling a 'focus' class which is set when the element is focused, I toggle an 'inlinetip' class which is set only when the tip is being displayed.

That way, I can strip off the values of any element with class 'inlinetip' at submission (and immediately re-add it if it's an AJAX submit).</description>
		<content:encoded><![CDATA[<p>I think most of us end up doing something similar.  The only difference in mine is I invert your &#8216;class&#8217; usage.  Instead of toggling a &#8216;focus&#8217; class which is set when the element is focused, I toggle an &#8216;inlinetip&#8217; class which is set only when the tip is being displayed.</p>
<p>That way, I can strip off the values of any element with class &#8216;inlinetip&#8217; at submission (and immediately re-add it if it&#8217;s an AJAX submit).</p>
<img src="http://feeds.feedburner.com/~r/TrevorDavisComments/~4/WB3lZ3tSxio" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://trevordavis.net/blog/tutorial/jquery-inline-form-labels/#comment-3089</feedburner:origLink></item>
</channel>
</rss><!-- Dynamic page generated in 0.789 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-07-13 07:02:08 -->
