<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Keith's Web Blog RSS Feed</title>
<language>en-us</language>
<link>http://www.keithwatanabe.net/index.php</link>
<description>Keith Watanabe's Website</description>
<item>
<title>form whitespace issues</title>
<link>http://www.keithwatanabe.net/blogs/2006/1/1/60e835b8a2016dfefe3bb33418d0acf5.html</link>
<description><![CDATA[form tags tend to put a small buffer around their surrounding elements.  this can be very annoying especially when you want to line things up.  to reduce this, use css and set the margin to 0.  that should remove this problem.]]></description>
<pubDate>Sun, 01 Jan 2006 11:55:06 -0700</pubDate>
<guid>http://www.keithwatanabe.net/blogs/2006/1/1/60e835b8a2016dfefe3bb33418d0acf5.html</guid>
</item>
<item>
<title>creating panels without page refresh</title>
<link>http://www.keithwatanabe.net/blogs/2006/1/2/c6bc0746e8129ded98b2f4f0d4f2474c.html</link>
<description><![CDATA[you can easily do something like this by using links, javascript and hiding your information using the style.display to 'none'.  before i was setting the item's visibility to hidden, but things would get bumped down if i really meant to replace the text or section with another one.  however, this will seemlessly replace the text/section as you'd conceive.]]></description>
<pubDate>Mon, 02 Jan 2006 02:55:38 -0700</pubDate>
<guid>http://www.keithwatanabe.net/blogs/2006/1/2/c6bc0746e8129ded98b2f4f0d4f2474c.html</guid>
</item>
<item>
<title>Javascript/CSS Display Issue</title>
<link>http://www.keithwatanabe.net/blogs/2008/3/6/49c4ff3f8272ab2df16fcd7af6e13195.html</link>
<description><![CDATA[I ran into a rather frustrating problem that I only solved the other day.  It was that I had embedded a stylesheet within the HTML using the <strong>style</strong> tags.  Inside, I used the ID selector to style a particular div element.  In particular, I used a kind of display: none; thing.<br />
<br />
Well, one of the things I needed was to be able to make that part visible again once a person unchecked that element.  Before I was doing something like $(ele).style.display = '';.  Turns out, that the precedence of Javascript is lower than the one in inline style.  So to rectify this, I had to instead do $(ele).style.display = 'block' (or inline).  Pretty annoying but a nice little fix to this problem.]]></description>
<pubDate>Thu, 06 Mar 2008 09:14:44 -0700</pubDate>
<guid>http://www.keithwatanabe.net/blogs/2008/3/6/49c4ff3f8272ab2df16fcd7af6e13195.html</guid>
</item>
</channel>
</rss>
