SE al posto del messaggio ciao vorrei richiamare ed eseguire un activex, quale sintassi dovrei usare?
codice:
<html>
<head>
<script type="text/javascript">
function funzione()
{
  alert("ciao!")
}
</script>
</head>
<body>
<form>
<input type="button" onclick="funzione()" value="clicca">
</form>
</body>
</html>