Results 1 to 2 of 2

Thread: opera and ie weird problems

  1. #1
    Join Date
    Mar 2006
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default opera and ie weird problems

    Hello,
    I am testing my page in different browser but I have encountred 2 problems testing in opera and ie..
    In ie...when I click the skype call button it disables all menu controls.. Till I try to make a call, everything works fine
    In opera ...the same + the skype tooltip message window does not appear above the iframes...suppose I need to define some level which should be higher than those of iframes...anybody knows how to fix it ?

    Cheers
    http://www.rolf.cz

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    I've noticed that in Opera, no matter what you do, an iframe is always on top. The problem with skype button sounds script related, not HTML at all. IE and Opera both allow/use document.all and this can lead to variables that are not formally declared:

    Code:
    var bob="your uncle"
    The red var declaration makes it formal, without that, if bob exists in the document as an object, it will be treated as one. Under some circumstances, bob will be created as an element object, rather than a string. If the id's of any of your menu items are referenced as variables in the skype code, this could be the trouble. Also, many scripts determine if document.all is available by setting a variable by it. This is done in different ways and if two scripts on the same page do it differently, the second one may stop the first from working properly.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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
  •