I have to handle request parameter on html page which is called by Ajax Request. My Code is:
$.ajax({
   type: "GET",
   url: "abc.html",
   data: "cat=1",
   dataType: "html",
   success: function(data) {
   $("#div").html(data);
  }
});
Now on abc.html page, I want to use "cat" request parameter. How its possible?
 
     
    