cirandas.net

ref: master

plugins/custom_forms/public/order.js


1
2
3
4
5
jQuery("select.filter").change(function(){
  var filter = jQuery(this).find("option:selected").val();
  var attribute = jQuery(this).attr('name');
  redirect_to('?' + attribute + '=' + filter);
});