Hi everyone !
I think I have a very easy question and hope someone can help me.
I want to call a javascript function from within a php generated table.
<script language="JavaScript">
<!--
function Hinzufuegen(Zeichen)
{
window.document.Rechner.Display.value =
window.document.Rechner.Display.value + Zeichen;
}
//-->
</script>
This is the button in a php generated table I want to call this function with
<td width=50><input type=button value=' Ü ' onClick='Hinzufuegen('Ü')'></td>
The name of the form and input field are correct, so I think I'm making a fundamental error with the quotation signs.
Does anybody know my error ?
thanks for you help
Jan