-
Notifications
You must be signed in to change notification settings - Fork 3
/
ExternalLinks.html
44 lines (34 loc) · 1.1 KB
/
ExternalLinks.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="pt-br" />
<meta http-equiv="Window-target" content="_self" />
<meta http-equiv="imagetoolbar" content="no" />
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>ExternalLinks Alert</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="robots" content="index, follow" />
<meta name="author" content="Wallace Erick" />
<link type="text/css" href="css/style.css" rel="stylesheet">
<script type="text/javascript" src="js/zepto.min.js"></script>
<script type="text/javascript">
Zepto(function($){
$('a[target="_blank"]').bind('click', function() {
if (confirm('Esse link abrirá uma nova janela, deseja continuar?')) {
return true;
} else {
return false;
}
});
});
</script>
</head>
<body>
<div id="head">
<a href="http://www.google.com.br/" title="Google" target="_blank">Google</a>
</div>
</body>
</html>