Experts Exchange connects you with the people and services you need so you can get back to work.
Submit
The results are in! Meet the top members of our 2017 Expert Awards. Congratulations to all who qualified!
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
Please enter a first name
Please enter a last name
We will never share this with anyone. Privacy Policy
Must be at least 4 characters long.
Join and Comment
By clicking you are agreeing to Experts Exchange's Terms of Use.
Helpful to verify reports of your own downtime, or to double check a downed website you are trying to access. One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
Anyhow, this should work:
<script language="VBScript">
Function FuncKeyboard(e)
If window.event.keyCode = 13
document.forms(0).submit()
End If
End Function
Function Init()
document.forms(0).elements
End Function
window.onload = Init
</script>