Sending values to a URL

Sending values to a URL

In my prevous posts I was working on a chained select boxes with three options. I have that working. I have a small form that gives option for category, watts and lamp. I know the purpose of Ajax is so you don't have to refresh the URL. Is it possible now I have the variables, I can pass them to another URL?

  1. $('#select_form').submit(function(){
     
      location.href = '<?php echo get_bloginfo('url')?>/search-results';
    });