After all efforts here, I have such code:
$(function(){
$("form#search-form").submit(function(e){
e.preventDefault();
var hash = 'search=' + $('#q').val() + '&lang=' + $('.lang:checked').val();
window.location.hash = hash;
search();
});
if (window.location.hash != "") {
search()
}
function search() {
var hash_arr = window.location.hash.substr(1).split('&'),
values = new Array(),
i = 0,
json = '{';
for (var key in hash_arr) {
values = hash_arr[key].split('=');
if (i++ != 0) json += ',';
json += '"' + values[0] + '":"' + values[1] + '"';
}
json += '}';
$("#results").fadeOut();
$.ajax({
type:"POST",
data: { data : json.serializeObject() },
url: "search.php",
success: function(msg){
$("#results").html(msg).fadeIn();
}
});
}
});
It works fine in Firefox 14.0.1 and Chrome 21.0.1180.57 beta. In Safari 6.0 there is a problem with non-latin character. For example, after typing German färben or Russian красить Safari is trying to find f%E4rben or :@0A8BL. I was trying to change
var hash = 'search=' + $('#q').val() + '&lang=' + $('.lang:checked').val();
into
var hash = 'search=' + encodeURI(document.getElementById('q').value) + '&lang=' + $('.lang:checked').val();
But it first it ruins everything in Chrome, search doesn't perform. In Safari there is only hash changing. Hash shows correctly in address bar but the script is still trying to find f%E4rben. In search.php I have:
$data = (array)json_decode($_POST['data']);
$search = $data['search'];
$language = $data['lang'];
May the problem is in the serialization? Here I don't have it, but my old script it had. How is it possible to perform serialization here?