I'm putting together a webapp that shows an individual's details like
employer, phone, website,etc. I'd like to create links to the maps
app, mail app, and safari on the iphone to "integrate" this app with
the iphone. The detail information is being displayed something like:
<div id="org1" title="Org 1"class="panel">
<fieldset>
<div class="row">
<label>Company</label>
<input value="Company Name" type="text" disabled="disabled"/>
</div>
<div class="row">
<label>Contact</label>
<input value="Boss" type="text" disabled="disabled"/>
</div>
<div class="row">
<label>Phone</label>
<input value="1234561234" type="text" disabled="disabled"/>
</div>
</fieldset>
If the input tag:
<input value="1234561234" type="text" disabled="disabled"/>
is replaced with:
<a href="tel:1234561234" target="_self">(123)456-1234</a>
the formatting gets all screwed up. I'm not very good with CSS. Does
anyone have any suggestions on how to fix this? Is there a more
appropriate way to display this?
Thanks,
-R
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---