Redirectiong a URL using html codes

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • marckvallon
    New Member
    • Aug 2013
    • 1

    Redirectiong a URL using html codes

    Hi not sure if this is in the right place or not, but I could use some help redirecting a usual page to another each time. I'd rather not have the 2nd page embedded on the first as it looks bad. I've tried using <html><meta http-equiv="refresh" content="1;url= http://example.com/" /></html> to redirect but it has no effect.

    I currently use something like this:
    Code:
    <div style="
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    min-width:1263px;
    z-index: 2;
    "><iframe title="" width="100%" height="1600" src="http://example.com" frameborder="0" scrolling="no""></iframe></Div
    but its just more of embedding it on the first page and there are issues with the scroll bar and dimensions and such so it doesn't work to well.

    I apologize if this is confusing and thanks in advance for any assistance
    Last edited by Rabbit; Aug 27 '13, 05:34 PM. Reason: Please use code tags when posting code.
  • shadowstrike
    New Member
    • Aug 2013
    • 21

    #2
    Please do check if this is what you are looking for(POSSIBLE DUPLICATE QUESTION)http://bytes.com/topic/javascript/an...ithin-function

    Comment

    • buy domain
      New Member
      • Aug 2013
      • 6

      #3
      You need add meta refresh tag under <head> tag.

      Comment

      Working...