external.AutoCompleteSaveForm

JavaScript -> Objekty -> External -> metóda AutoCompleteSaveForm

Syntax

window.external.AutoCompleteSaveForm(param1)

Popis

Príkaz jazyka JavaScript
Adds the form input to the autocomplete list

Parametre:
param1 Required; the name of the form.

Príklad

<html>
<body>
<form name="myForm">
    First Name: <input type="text" name="firstName"><br>
    Last Name: <input type="text" name="lastName" autocomplete="off">
</form>
<script language="JavaScript">
function function1(){
   window.external.AutoCompleteSaveForm(document.forms[0]);
   myForm.firstName.value="";
   myForm.lastName.value="";
}
</script>
<button onclick="function1();">Save</button>
</body>
</html>