<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: Frost's Code Snippets</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Fri, 29 Aug 2008 00:40:05 GMT</pubDate>
    <description>DZone Snippets: Frost's Code Snippets</description>
    <item>
      <title>Form input layout css</title>
      <link>http://snippets.dzone.com/posts/show/3064</link>
      <description>// description of your code here&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;label&lt;br /&gt;{&lt;br /&gt;    width:250px;&lt;br /&gt;    float:left;&lt;br /&gt;    clear:both;&lt;br /&gt;}&lt;br /&gt;            &lt;form action="contact.php" method="POST"&gt;&lt;br /&gt;                &lt;ul id="contact"&gt;&lt;br /&gt;                    &lt;li&gt;&lt;br /&gt;                        &lt;label for="name"&gt;Name:&lt;/label&gt;&lt;br /&gt;                        &lt;input type="text" name="name" /&gt;&lt;br /&gt;                    &lt;/li&gt;&lt;br /&gt;                    &lt;li&gt;&lt;br /&gt;&lt;br /&gt;                        &lt;label for="email"&gt;Email:&lt;/label&gt;&lt;br /&gt;                        &lt;input type="text" name="email" /&gt;&lt;br /&gt;                    &lt;/li&gt;&lt;br /&gt;                    &lt;li&gt;&lt;br /&gt;                        &lt;label for="message"&gt;Message:&lt;/label&gt;&lt;br /&gt;                        &lt;textarea name="message"&gt;&lt;/textarea&gt;&lt;br /&gt;                    &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;                    &lt;li&gt;&lt;br /&gt;                        &lt;input type="Submit" name="send" value="Send" /&gt;&lt;br /&gt;                    &lt;/li&gt;&lt;br /&gt;                &lt;/ul&gt;&lt;br /&gt;            &lt;/form&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Thu, 30 Nov 2006 17:26:42 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/3064</guid>
      <author>FROST (Frost Design)</author>
    </item>
    <item>
      <title>Backward compatible version of getElementById()</title>
      <link>http://snippets.dzone.com/posts/show/3023</link>
      <description>// Simple function for returning an element by id that's backwards compatible with older versions of IE&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;function getElement(id)&lt;br /&gt;{&lt;br /&gt;    if(document.all)&lt;br /&gt;    {&lt;br /&gt;         return eval("document.all['" + id + "']");&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;    else&lt;br /&gt;    {&lt;br /&gt;         return document.getElementById(id);&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Mon, 20 Nov 2006 10:34:34 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/3023</guid>
      <author>FROST (Frost Design)</author>
    </item>
  </channel>
</rss>
