Marc Jansen wrote:
var $possibleOptsRight;

$( document ).ready(function() {
 $possibleOptsRight = $('#rightselectlist option');
 $( '#leftselectlist' ).bind('change', function() {
   $('#rightselectlist')
     .children().remove().end()
     .append( $possibleOptsRight ).children()
     .not('.' + $(this).val() ).hide();
 });
});

I'll give this a try, thanks. :)

Regards,
Michael Price

Reply via email to