I have the following:
enquire.register(value, {
  match: function () {
    $('nav.menu a[href="#"]').click(function () {
      $(this).next('ul').toggle();
    })
  },
  unmatch: function () {
  }
});
In unmatch, how can I cancel the click event which I set in match?
 
     
    