jQuery(document).ready(function($) {
  
  $('#options li').click(function (e) {
    
    e.stopPropagation();
    $(this).find('a').click();
    
  });
});
