blob: 299e4d66ad26c00f5c6c33cca15c6277e39ca2d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<script>
function navigateToTelURL()
{
window.location.href = "tel:+1 (408) 996-1010";
}
function navigateToTelURLInZeroTimer()
{
window.setTimeout(navigateToTelURL, 0);
}
function navigateToTelURLInNestedZeroTimer()
{
window.setTimeout(navigateToTelURLInZeroTimer, 0);
}
</script>
</head>
</html>
|