'AutoCompleteSaveForm()' Example : Window External : Javascript Objects : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  Javascript Objects   » [  Window External  ]   
 



'AutoCompleteSaveForm()' Example

Please note that some example is only working under IE or Firefox.

    
<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>

    
      
      
Related examples in the same category
1.  Add Favorite
2.  'ImportExportFavorites()' Example
3.  'IsSubscribed()' Example
4.  'menuArguments' Example
5.  Navigate And Find
6.  'AutoScan()' Example
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.