libdo

Untitled

Oct 8th, 2017
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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>
Add Comment
Please, Sign In to add comment