I realized that there's some delay on form submission with javascript confirmation on Google Chrome during my development.
So I tried test with small html page to make sure whether the delay is caused by my application. But it still happening in the test page.
I just don't want to confirm on form's onsubmit event as there will be more than one submission for different purposes.
So here's my test html.
<html>
<head><title>Test</title></head>
<body>
<script type="text/javascript">
var currentTime = new Date()
document.write(currentTime.getMilliseconds());
</script>
<form name="input" method="post">
<input type="submit" value="Submit" onclick="javascript:return confirm('Are you sure to submit?');" />
</form>
</body>
</html>
How can I avoid that delay? Do I need to change anything from my end?
Please correct if that caused by my html which is not construct well form or missing something.
Thanks.