Is my jquery wrong?

Is my jquery wrong?

Hello everyone...!!
Did I make mistake?

Everytime I do request.getParameter("dataString"); ----> inside my JSP processor
it always returned me NULL.

Actually I do posting the variable dataString with a value;

Take a look at this my jquery;
(correct me if I'm wrong);

  1. var content;
  2. var dataString="ha";

  3. $( function() {

  4.     $.validator.addMethod("username", function(value, element) {
  5.         return this.optional(element) || /^[a-z0-9\_]+$/i.test(value);
  6.     }, "UserID: only letters, numbers, or underscore.");

  7.     $('#userAccountForm').validate();

  8.     $('input').focus( function() {
  9.         content = $(this).val();
  10.         if(content=='- none -') {
  11.             $(this).val("");
  12.         }
  13.     } );
  14.     
  15.     $('input').blur( function() {
  16.         content = $(this).val();
  17.         if(content=='') {
  18.             $(this).val("- none -");
  19.         }
  20.     } );

  21.     var options = {
  22.         target: "#result",
  23.         url: "user-form-function",
  24.         beforeSubmit: validate,
  25.         data: dataString,
  26.         success: getResponse
  27.     };

  28.     $('#userAccountForm').ajaxForm(options);

  29. } );

  30. function validate(formData, jqForm, options){

  31.     var emptyThing = "- none -";

  32.     // ensure all fields are not empty
  33.     // we use word - none - as empty field
  34.     var usName = $('#username').val();
  35.     var email = $('#email').val();
  36.     var contc = $('#mobilephone').val();
  37.     //    var photo = $('#avatar').val();
  38.     var usId = $('#userid').val();
  39.     var pass = $('#password').val();
  40.     var editClient = $('input:radio[name=editClient]:checked').val();
  41.     var addClient = $('input:radio[name=addClient]:checked').val();
  42.     var delClient = $('input:radio[name=deleteClient]:checked').val();
  43.     var adminPriv = $('input:radio[name=adminPriv]:checked').val();
  44.     
  45.     if(adminPriv==undefined){
  46.         alert("it is not admin okay?");
  47.         adminPriv = "staff";
  48.     } else {
  49.         adminPriv = "administrator";
  50.     }

  51.     if(usName==emptyThing){
  52.         usName = "none";
  53.     }
  54.     if(contc==emptyThing){
  55.         contc = "0";
  56.     }
  57.     if(pass==emptyThing){
  58.         pass = "default";
  59.     }
  60.     
  61.     dataString = "username="+usName+"&"+"contact="+contc+"&"+"email="+email+"&"+"userid="+usId+"&"+"password="+pass+"&"+"editclient="+editClient+"&"+"addclient="+addClient+"&"+"deleteclient="+delClient+"&"+"adminprivillege="+adminPriv;

  62.     // animate
  63.     $('#userAccountForm').fadeOut(1000, function(){
  64.         $('#loadingBar').show();
  65.         $('#loadingBar').fadeIn("slow");
  66.     } );

  67.     return true;
  68. }

  69. function getResponse(html){
  70.     $('#loadingBar').fadeOut(500);
  71.     $('#result').html(html).show();
  72.     alert("in getting response");
  73. }