I have an app where I need to show some info and then move foward by
submitting a form. I have a div with a panel and fieldset to show the
information. Then I want to add an unordered list item that will load
a form via ajax. Here is my code...

    <div id="preview" title="Confirm" class="panel">
        <h2>Your Choices</h2>
        <fieldset>
            <div class="row">
                <label>Name</label>
                <input type="text" id="item1" name="item1"
value="Doug's Bistro"/>
            </div>
            <div class="row">
                <label>Food</label>
                <input type="text" id="item2" name="item2" value=""/>
            </div>
            <div class="row">
                <label>Discount</label>
                <input type="text" id="item3" name="item3" value="Free
Desert"/>
            </div>
        </fieldset>
        <div>
                <ul id="testUL" title="TestTitle">
                        <li><a 
href="http://www.mydomain.com/test.php";>test</a></li>
                </ul>
        </div>
    </div>

The fieldset looks fine on Safari... but the UL looks like a normal
UL, not a list entry... what am I doing wrong?

Thanks for any help.

Doug


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/iphonewebdev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to