Citat:
Ursprungligen postat av Quarrel
Det behöver man inte, det finns en "Tillbaka"-knapp på sidan.
Inte så jag menade, känner till den men det går tex. inte att linka till en tråd på mobilsidan
Skulle kunna lösas genom HTML5 window.history.pushState() och kolla om det står något efter
https://www.flashback.org/m ex.
https://www.flashback.org/m/t1264155
Sen för att vidarebefodra till mobilsidan se Sweclockers script
Kod:
function MobileRedir() {
this.host = "http://m.sweclockers.com";
this.tryRedir = function () {
if (!$.cookie || !this.isMobile() || $.cookie("showmobile") == -1) {
return
}
if ((mobileUrl = this.getRedirectUrl()) !== false) {
if ($.cookie("showmobile") == 1) {} else {
if (confirm("Vill du g\u00E5 vidare till SweClockers f\u00F6r mobiltelefoner?")) {
$.cookie("showmobile", "1", {
expires: 1,
path: "/"
});
window.location = this.host + mobileUrl
} else {
$.cookie("showmobile", "-1", {
expires: 1,
path: "/"
})
}
}
}
};
this.isMobile = function () {
return (screen.width <= 1280 && navigator.userAgent.match(/(iphone|android|blackberry|windows phone|windows ce|symbian|opera mini|opera mobi|palm|maemo|fennec)/i))
};