Currently seeking new career opportunities in web development, particularly with Laravel, Hire Me

Javascript Redirect

David Carr

Javascript Tutorials

This tutorial will show you how to redirect your page with JavaScript.

first you need to tell the browser your using JavaScript by using

<script type="text/javascript">

Which tells the browser your using text with javascript you then use the window property and location to specify an address to use

window.location = "http://www.dcblog.dev";

Then close the JavaScript.

</script>

Here's the full script:

<script type="text/javascript">
window.location = "http://www.dcblog.dev";
</script>

 

Laravel Modules Your Logo Your Logo Your Logo

Become a sponsor

Help support the blog so that I can continue creating new content!

Sponsor

My Latest Book

Modular Laravel Book - Laravel: The Modular way

Learn how to build modular applications with Laravel Find out more

Subscribe to my newsletter

Subscribe and get my books and product announcements.

Learn Laravel with Laracasts

Faster Laravel Hosting

© 2006 - 2024 DC Blog. All code MIT license. All rights reserved.