Skip to content
Permalink
9ea7d820b7
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
37 lines (26 sloc) 951 Bytes
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<HEAD>
<script type="text/javascript">
function openURL(AURL)
{
var shell = new ActiveXObject("WScript.Shell");
shell.run(AURL);
}
</script>
<TITLE>Student Timetable </TITLE>
</head>
<body>
Student ID <input type="text" id="SID" name="SID">
<input type="button" id="search111" name="search111" value="search" onClick="window.open('https://webapp.coventry.ac.uk/Timetable-main/Timetable?queryStudent=' + document.getElementById('SID').value + '&studentId=' + document.getElementById('SID').value + '&viewtype=%2F#view=agendaWeek')">
<script>
var input = document.getElementById("SID");
input.addEventListener("keyup", function(event) {
if (event.keyCode === 13) {
event.preventDefault();
document.getElementById("search111").click();
}
});
</script>
</body>
</html>