views:

162

answers:

1

i have tried load and hebrew didn't work for me so i changed my code to

    $.ajax({
        type: "post",
        url: "process-tb.asp",
        data: data,
        success: function(msg)

(partial code)

not knowing that post and get is the problem for my hebrew querystring. so know i can get my page to get the hebrew and english but no spaces are add to the text.

all pages are encoded to utf-8.

what is wrong with it?

A: 

i have fixed that with replacing spaces - so hebrew works with post and spaces are replaced

data = data.replace(/\s/g, "%20");
Y.G.J