SHOW:
|
|
- or go back to the newest paste.
1 | <script type="text/javascript"> | |
2 | ||
3 | $(document).ready(function(){ | |
4 | ||
5 | $('select.ParentCategoryID').change(function(){ | |
6 | ||
7 | var val = null; | |
8 | ||
9 | if($(this).val()){ | |
10 | val = $(this).val(); | |
11 | } else { | |
12 | val = $(this).prev('select.ParentCategoryID').val(); | |
13 | } | |
14 | ||
15 | $('div#ProductFamilyCategoryContainer').load('<?php echo Router::url(array('controller' => 'productCategories','action' => 'selects')); ?>/' + val); | |
16 | ||
17 | }); | |
18 | ||
19 | }); | |
20 | ||
21 | </script> |