I have simple javascript alert box i want it to close automatically after 5 second. if possible help please.
<script type="text/javascript">
function show_alert()
{
alert("Hello! I am an alert box!");
}
</script>
<input type="button" onclick="show_alert()" value="Show alert box" />