HEAD request from opera

HEAD request from opera

Hi,
I am trying to send a form with HEAD request using $.ajax().
  1. $("#userId").val(1);    
  2.     $.ajax({
                type: "HEAD",
                url: "/user/"
                data: $("#user").serialize(),
                complete: function (XMLHttpRequest, textStatus) {
                  var hasAccess = XMLHttpRequest.getResponseHeader("hasAccess");
                  if(hasAccess == null) {
                    //do somthing
                  }
                  else {
                   //do otherthings
                  }
                }           
              });












My form is :
  1. <form id="user" method="HEAD" action="/user/" >
  2.  <input id="userId" name="userId"/>
  3. </form>
The problem is FF and IE sends the id perfectly. but Chrome and Opera does not send the userId and thats why i am getting userId 0 in my server side code.