I am going to create two pages.
The first page will be home.html On this page I am going to have a link which moved to page 2 layout.html and from there the url should be fired is this possible please?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To redirect to another page, use
window.location.href = "http://my/href.com";. If you want to do this on page load, try something like this:If you’d like to open another window or tab when you visit the second page, try something like this:
This will open your link in a new window (or tab, based on user settings, which you can’t control).
Sorry if this isn’t useful, but this is the best I can do without you being more specific as to what you’re attempting to achieve.