'acceptCharset' Example : Accept « Form Control « JavaScript DHTML
- JavaScript DHTML
- Form Control
- Accept
'acceptCharset' Example
<html>
<head>
<script language="JavaScript">
function goAcceptCharset() {
alert(document.all.myForm.acceptCharset);
}
</script>
</head>
<body onLoad="goAcceptCharset();">
<form id="myForm" method="post" action="" acceptcharset="UTF-8">
some input fields
</form>
</body>
</html>
Related examples in the same category