[jQuery] Re: Special characters with ajax.

2008-09-25 Thread uncleroxk

i know that   .serialize will encode it to a "url safe" character, but
what if i decided not to use serialize, as serialize would not allow
multiple selection for Option..


[jQuery] Special characters with ajax.

2008-09-25 Thread uncleroxk

Hi, i am new to Jquery.. i have a query here.

let say that i want to pass the variable parameter "parameter" var
$.post.. if i have any special character in the parameter, all the
character after the special character are not been pass..


var parameter = "abcdefg??abcdefg";
$.post('process.php', {'term': parameter}, function(data) {
  $('#display).html(data);
});



Is there anyway to solve it?.
Thanks in advance.. =)