Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.133.149.244
<script type="text/javascript">
$(function () {
$('#tabs').tabs()
})
$(function () {
$('#sub_tabs').tabs()
})
</script>
<style>
.btn {
background-color: #008cba;
border: none;
color: white;
padding: 6px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 13px;
cursor: pointer;
border-radius: 3px;
}
.table {
width: 100%;
border: 1px solid #c5dbec;
border-collapse: collapse;
border-radius: 4px;
}
.column {
border: 1px solid #c5dbec;
padding: 5px;
}
.row {
height: 30px;
text-align: center;
}
</style>
<div id="tabs">
<ul>
<li><a href="#">Old Question Papers</a></li>
</ul>
<div style="overflow: auto; padding: 1rem">
<table class="content-tbl" cellpadding="5" cellspacing="2" width="100%">
<tr>
<td align="right" style="width: 140px">Degree:</td>
<td>
<select
id="degree"
onchange="getOldQpSem()"
class="textInputEnabled"
style="width: 100%; height: 28px"
></select>
</td>
</tr>
<tr>
<td align="right">Exam No:</td>
<td>
<select
id="sem"
onchange="getOldQpYear()"
class="textInputEnabled"
style="width: 100%; height: 28px"
></select>
</td>
</tr>
<tr>
<td align="right">Exam Year / Month:</td>
<td>
<select
id="year"
class="textInputEnabled"
style="width: 100%; height: 28px"
></select>
</td>
</tr>
<tr>
<td></td>
<td>
<span
style="
background-color: #008cba;
border: none;
color: white;
padding: 5px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 12px;
cursor: pointer;
border-radius: 3px;
"
onclick="viewOldQuestionPapers();"
>View Details</span
>
</td>
</tr>
</table>
<div id="tabledata" style="padding: 15px"></div>
</div>
</div>
|