Initially page load normally, after changing iframe src, page load same URL as new URL in the same window. So if user want to go previous page user should need to press back button two times. Someone, please explain why?
Link: https://www.karisma.se/jobbannons?id=101052&source=Hemsida
Backend Code:
import wixLocation from 'wix-location';
$w.onReady(function () {
let {id} = wixLocation.query;
$w('#html1').src = 'https://mywebsit.com/?id=' + id;
});