Results 1 to 4 of 4

Thread: Full refresh in IE

  1. #1
    Join Date
    Apr 2010
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Full refresh in IE

    Hi..

    I'm having a very frustrating issue with some javascript and proper functionality in IE.

    what's supposed to happen is the javascript is supposed to call for a video to load and play. That video is clip tagged to another video, so when you click on the first video the second is supposed to play (same URL with a clip tag). It works fine in firefox of course. But my problem is that in IE the when you click on the first video it loads the clip tagged URL for the second video but replays the first.

    I've never encountered this before, the client built the site himself in livepage and the code is ugly, so i don't know if there is some other element on his site that is cause IE to not fully refresh after you click the clip and load the URL of the same page with the clip tag.

    I've tried the meta refresh route, but it kept refreshing in some nasty cycle.
    I think a one time refresh might fix the problem, but I don't know what the code is to get the page to just refresh once, instantly. Can anyone assist me please?

    It's not the prettiest solution, so if anyone knows why this is happening in IE and knows a fix, that would be awesome!.

    Thanks

  2. #2
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    Not without seeing the page or the code. If the page is live, please link to it.
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  3. #3
    Join Date
    Apr 2010
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Here is the site. It works like it is supposed to in firefox, so make sure to look at it in IE

    http://olympiancares.com

  4. #4
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    It appears that in your hosted account where the video stuff is stored the bottom line gives all instructions for the clickAd scripting.

    For the object tag (rudimentary embedding of Flash from Netscape based browsers) you have this:

    Code:
    clickUrl:'http://olympiancares.com?lopct=audio'
    Later in the same line, for the embed side (again rudimentary embedding for IE browsers) you have this:

    Code:
    clickUrl:''
    So, the object tag is telling the browser what to load (lopct=audio), but the IE embed tag doesn't have it listed to play.

    May need to contact the host of that script/Flash movie to correct the problem. If you host it, it is an easy fix.

    If they won't fix it then you will need a JS answer to reload the page once AFTER the button has been clicked. Which I can't really help with as I am not wise in the forces of JS.


    <edit> Code listed here: http://motiliti.net/LiveOnPageClient...i=7772&pi=home
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •