passing variables to a page...help!

passing variables to a page...help!

I know ajax...but having a crazy time making the jquery do the same function....

I'm passing a variable and appending it to the page. How can I re create that function with jquery?

Here's my ajax code below:

 
  1.  function filterColumn(){

  2. var tl = document.getElementById('tl').value;
  3. dim();
    loader();
  4. nocache = Math.random();
  5. http.open('get', 'include/filterColumn.php?tl='+tl);
  6. http.onreadystatechange = doFilter;
  7. http.send(null);
  8. }

  9. function doFilter() {
  10. if(http.readyState == 4){
  11. closeDim();
  12. var response = http.responseText;
  13. document.getElementById('updateQualitySpan').innerHTML = ' ' +response+ '';
  14. }
  15. }