'implementation' Example : implementation « Javascript Objects « JavaScript DHTML
- JavaScript DHTML
- Javascript Objects
- implementation
'implementation' Example
<html>
<head>
<script language="JavaScript">
function function1() {
var m = document.implementation.hasFeature("HTML");
alert("Implementation value: "+m);
}
</script>
</head>
<body>
<input type="button" value="Click here" onClick="function1();">
</body>
</html>
Related examples in the same category