Instead of opening an alert in the following Javascript code I want to redirect to a URL where the URL is imported from a QR-Code scan but sadly am no good with Javascript. Any help?
<script type="text/javascript" charset="utf-8">
function scanCode(){
cordova.plugins.barcodeScanner.scan(
function (result) {
setTimeout(function() {alert('Very good. ' + result.text);}, 500);
},
function (error) {alert("Scanning failed: " + error);
}
);
}
</script>
Version with a redirection as an HTTP redirect :
Version with a redirection as clicking on a link :