javascript redirect data url get code example
Example 1: javascript redirect
<script>
window.location.href = "http://mywebsite.com/home.html";
</script>
Example 2: redirect with data jquery
$.redirect('demo.php', {'arg1': 'value1', 'arg2': 'value2'});