'vcard_name' sets the element vCard value to use with the autocomplete list provided by the browser
<html> <body> <form name="myForm"> Customer Name: <input type="text" name="CustomerName" vcard_name="vCard.DisplayName"> Address: <input type="text" name="CustomerAddress" vcard_name="vCard.Home.StreetAddress"> City: <input type="text" name="CustomerCity" vcard_name=" vCard.Home.City "> State: <input type="text" name="CustomerState" vcard_name=" vCard.Home.State "> Zip Code: <input type="text" name="CustomerZipcode" vcard_name=" vCard.Home.Zipcode "> </form> </body> </html>