diff options
Diffstat (limited to 'httemplate/browse/part_pkg_taxproduct/compliance_solutions.html')
-rw-r--r-- | httemplate/browse/part_pkg_taxproduct/compliance_solutions.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/httemplate/browse/part_pkg_taxproduct/compliance_solutions.html b/httemplate/browse/part_pkg_taxproduct/compliance_solutions.html index 78c1b0a1d..bbcb6877f 100644 --- a/httemplate/browse/part_pkg_taxproduct/compliance_solutions.html +++ b/httemplate/browse/part_pkg_taxproduct/compliance_solutions.html @@ -8,10 +8,12 @@ $().ready(function() { + $('#taxproduct_submit').on('click', function() { + var service_code = $('#service_code').val().split(' '); select_taxproduct( - $('#service_code').val(), - $('#service_code').val() + ' ' + $('#service_code :selected').text() + service_code[0], + service_code[1] + ' ' + $('#service_code :selected').text() ); }); }); |