Guest User

Untitled

a guest
Dec 30th, 2012
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.52 KB | None | 0 0
  1. $(document).ready(function(){
  2.    
  3.     var data = {"X":['maths', 'bio'],
  4.                       "Y":['maths']};
  5.    
  6.     $('#lecturer_id').change(function(){
  7.        
  8.        
  9.       var selecti = $('#lecturer_id >option:selected').text();
  10.             $('#course_id').empty();
  11.        
  12.        
  13.               var i = 0 ;
  14.               for(i = 0; i < data[selecti].length; i++){
  15.                  $("#course_id").append('<option value='+[selecti][i]+'>' + data[selecti][i]  +'</option>');
  16.               }
  17.     });
  18. });
Advertisement
Add Comment
Please, Sign In to add comment