diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-05-22 19:19:01 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-05-22 19:19:01 -0700 |
commit | 6775e56f85e871b369ebe3d25498fda640cef47b (patch) | |
tree | 15e76bbbf1f3e1863d0afaae86cd91a5c2e05d84 /httemplate/elements/select-areacode.html | |
parent | cb2a5cbe1fb5f0b3fb8bea31f310f5805e5667c5 (diff) |
fix DID selection dropdowns, RT#75901
Diffstat (limited to 'httemplate/elements/select-areacode.html')
-rw-r--r-- | httemplate/elements/select-areacode.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/httemplate/elements/select-areacode.html b/httemplate/elements/select-areacode.html index 11b618847..e96832279 100644 --- a/httemplate/elements/select-areacode.html +++ b/httemplate/elements/select-areacode.html @@ -21,7 +21,7 @@ areacodeerror.style.display = 'none'; what.form.<% $opt{'prefix'} %>exchange.disabled = 'disabled'; - what.form.<% $opt{'prefix'} %>phonenum.disabled = 'disabled'; + $('#<% $opt{'prefix'} %>phonenum').prop('disabled', true); var state = what.options[what.selectedIndex].value; @@ -29,16 +29,16 @@ var reply = JSON.parse(areacodes); // blank the current areacode - $('#<% $opt{prefix} %>areacode').empty; + $('#<% $opt{prefix} %>areacode').empty(); // blank the current exchange too - $('#<% $opt{prefix} %>exchange').empty; - jopt( $('#<% $opt{prefix} %>exchnage'), '', 'Select city / exchange' ); + $('#<% $opt{prefix} %>exchange').empty(); + jopt( $('#<% $opt{prefix} %>exchange'), '', 'Select city / exchange' ); // blank the current phonenum too - $('#<% $opt{prefix} %>phonenum').empty; + $('#<% $opt{prefix} %>phonenum').empty(); if ( what.form.<% $opt{'prefix'} %>phonenum.type != 'select-multiple' ) { - jopt($('<% $opt{'prefix'} %>phonenum'), '', 'Select phone number'); + jopt($('#<% $opt{'prefix'} %>phonenum'), '', 'Select phone number'); } % if ($opt{empty}) { |