set focus to first textbox
<html>
<script type="text/javascript">
function setfocus()
{
document.GetElementById("firstName").focus();
}
</script>
<body onload="setfocus()">
</body>
</html>
how i can do above in delphi for php
how i can set focus to first text box when i run a delphi for php project in browser.
warm regards,
mk.
|