Prepopulating mautic form with variables from URL

Hello, I have V4.2.2 on VPS installed. I just tried prepopulating the email-field on the form that I added to this landing page: https://m.ionutojica.ro/actualizarea-numarului-de-telefon?email=test@test.com
It doesn´t seam to work. It should work, as you mention. Is it a bug in V4.2.2 ?
I am thinking to add this code to my page (https://stackoverflow.com/a/14070223)

var hashParams = window.location.hash.substr(1).split('&'); // substr(1) to remove the `#`
for(var i = 0; i < hashParams.length; i++){
    var p = hashParams[i].split('=');
    document.getElementById(p[0]).value = decodeURIComponent(p[1]);;
}

An older post (2017) I found, that mention the prepopulating the form-fields should work is this one: Link for leads to update their profile - #5 by Adam .

Do you have an idea, what am I missing?
I am not logged in, I use private session or other browser - the same happens.