Guest User

Untitled

a guest
Jun 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3. $("#trigger").selectOptions("1");
  4. $("#target").ajaxAddOption("catalog/category_JSON.php?location="+$("#trigger").val(), null, true);
  5. $("#target").selectOptions("3");
  6. });
  7. </script>
  8.  
  9. <select id="trigger"
  10. onchange=" $(\'#target\').removeOption(/./);
  11. $(\'#target\').ajaxAddOption(\'catalog/category_JSON.php?location=\'+$(\'#trigger\').val(), null, false);" >
  12. <option id="0">-- Choose Location: --</option>
  13. <option value="1">Charleston</option>
  14. <option value="2">Greenville</option>
  15. </select>
  16.  
  17. <select id="target" name="status"></select>
Add Comment
Please, Sign In to add comment