fixed dropdown arrow in popup

This commit is contained in:
sghsri
2018-08-31 19:48:25 -05:00
parent 996e18ca6b
commit 1c0b7c9bf7
5 changed files with 31 additions and 8 deletions

13
js/import.js Normal file
View File

@@ -0,0 +1,13 @@
$(function () {
//template https://utdirect.utexas.edu/apps/registrar/course_schedule/20189/51475/
var sem = $('[name="s_ccyys"]').val();
$(".tbg").after("<button class='matbut' id='import' style='margin:10px 0px 20px 0px;'><span style='font-size:small'>Import into </span><b>UT Reg Plus<b></h2>");
$("#import").click(function(){
$(".tbg").find(".tbon>td:first-child").each(function(){
console.log($(this).text().replace(/\s/g, ''));
});
alert(sem);
});
});