-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkPage.js
More file actions
executable file
·35 lines (23 loc) · 851 Bytes
/
linkPage.js
File metadata and controls
executable file
·35 lines (23 loc) · 851 Bytes
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
$(document).ready(function() {
$('#linkPrincipal').click(function(){
window.location = "http://localhost/SEV_1000_WS/dashboard.php";
return false;
});
$('#linkInformacion').click(function(){
//location.reload();
window.location = "http://localhost/SEV_1000_WS/info.php";
return false;
});
$('#linkEnsayo').click(function(){
//location.reload();
window.location = "http://localhost/SEV_1000_WS/html/ensayo.php";
return false;
});
$('#linkManual').click(function(){
//location.reload();
//window.location = "http://localhost/SEV_1000_WS/archivos/SEV_Prueba_04-04-2022.txt";
var link = "http://localhost/SEV_1000_WS/archivos/SEV_Manual_Usuario.pdf";
window.open(link, '_blank'); window.focus();
return false;
});
});