Form 'encoding' Example : Accept « Form Control « JavaScript DHTML






Form 'encoding' Example

    
<html>
<body>
<form id="myForm" method="post">
    <button onclick="alert(document.all.myForm.encoding);">encoding</button>
    <button onclick="alert(document.all.myForm.enctype);">enctype</button>
</form>
</body>
</html>

    
      
      








Related examples in the same category

1.'enctype' Example
2.'acceptCharset' Example
3.'accept' Example