Results 1 to 3 of 3
  1. #1
    Power Member
    Join Date
    Jul 2006
    Location
    Cesano Maderno, Italy
    Posts
    784

    Exclamation Internet Explorer 6 - 7 --> click a link and LS gets Stalled

    Internet Explorer 7 and previous versions have a strange behavior dealing with links containing "javascript:" hrefs.

    In fact if an HTML "A" element similar to the one below is used in a push-page to run javascript code, then the streaming gets stopped:
    Code html:
    1. <a href="javascript:myStuff()">Click</a>

    You can use a link like this one to avoid the problem:
    Code html:
    1. <a href="#" onclick="myStuff()">Click</a>

    The issue is solved with IE8

  2. #2
    Power Member
    Join Date
    Jul 2006
    Location
    Cesano Maderno, Italy
    Posts
    784
    If you have no chance to change those links because them are generated by something like an ASP.NET control, check this thread.

  3. #3
    Member
    Join Date
    Feb 2008
    Location
    Sofia
    Posts
    2

    href="#" gets you to the top of the current page

    This can be avoided with
    HTML Code:
    <a href="#" onclick="myStuff(); return false;">Click</a>
    Thus the href is not considered at all.

 

 

Similar Threads

  1. Replies: 6
    Last Post: August 10th, 2010, 10:14 AM
  2. Internet Explorer --> domain and opener issue
    By Mone in forum Client SDKs
    Replies: 0
    Last Post: September 21st, 2009, 03:38 PM
  3. Internet Explorer --> Security zones issue
    By Mone in forum Client SDKs
    Replies: 0
    Last Post: July 30th, 2009, 10:09 AM
  4. Internet Explorer --> Proxy issue
    By Mone in forum Client SDKs
    Replies: 0
    Last Post: October 22nd, 2007, 11:20 AM

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
  •  
All times are GMT +1. The time now is 11:40 AM.