diff --git a/gui/slick/js/displayShow.js b/gui/slick/js/displayShow.js index 86c798bd..b78264a7 100644 --- a/gui/slick/js/displayShow.js +++ b/gui/slick/js/displayShow.js @@ -38,7 +38,7 @@ $(document).ready(function () { if (epArr.length == 0) return false; - url = sbRoot + '/home/setStatus?show=' + $('#showID').attr('value') + '&eps=' + epArr.join('|') + '&status=' + $('#statusSelect').attr('value'); + url = sbRoot + '/home/setStatus?show=' + $('#showID').attr('value') + '&eps=' + epArr.join('|') + '&status=' + $('#statusSelect').val(); window.location.href = url }); @@ -105,7 +105,7 @@ $(document).ready(function () { // handle the show selection dropbox $('#pickShow').change(function () { var sbRoot = $('#sbRoot').val(); - var val = $(this).attr('value'); + var val = $(this).val(); if (val == 0) return; url = sbRoot + '/home/displayShow?show=' + val; @@ -268,4 +268,4 @@ $(document).ready(function () { height:120 }); }); -}); \ No newline at end of file +});