Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Frost Design www.frostdesign.com.au

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Form input layout css

// description of your code here

label
{
    width:250px;
    float:left;
    clear:both;
}
            <form action="contact.php" method="POST">
                <ul id="contact">
                    <li>
                        <label for="name">Name:</label>
                        <input type="text" name="name" />
                    </li>
                    <li>

                        <label for="email">Email:</label>
                        <input type="text" name="email" />
                    </li>
                    <li>
                        <label for="message">Message:</label>
                        <textarea name="message"></textarea>
                    </li>

                    <li>
                        <input type="Submit" name="send" value="Send" />
                    </li>
                </ul>
            </form>

Backward compatible version of getElementById()

// Simple function for returning an element by id that's backwards compatible with older versions of IE

function getElement(id)
{
    if(document.all)
    {
         return eval("document.all['" + id + "']");

    }
    else
    {
         return document.getElementById(id);
    }
}


« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS