FireFox is not Rendering Javascript functions

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Phoe6

    FireFox is not Rendering Javascript functions

    The following Java Script is present on a page, which displays a Hover
    Enter gif and when user presses it, enters the website.
    This is working properly in Internet Explorer ( perhaps, it was
    developed using Front Page?) But is not working with FireFox.

    where could be the problem, how to modify it.

    Thanks!
    Senthil



    <!--[if !mso]>
    <style>
    v\:* { behavior: url(#default#VM L) }
    o\:* { behavior: url(#default#VM L) }
    ..shape { behavior: url(#default#VM L) }
    </style>
    <![endif]--><!--[if gte mso 9]>
    <xml><o:shapede faults v:ext="edit" spidmax="1027"/>
    </xml><![endif]-->
    <script language="JavaS cript" fptype="dynamic animation">
    <!--
    function dynAnimation() {}
    function clickSwapImg() {}
    //-->
    </script>
    <script language="JavaS cript1.2" fptype="dynamic animation"
    src="file:///C:/Program%20Files/Microsoft%20Off ice/Office10/fpclass/animate.js">
    </script>

  • Randy Webb

    #2
    Re: FireFox is not Rendering Javascript functions

    Phoe6 wrote:[color=blue]
    > The following Java Script is present on a page, which displays a Hover
    > Enter gif and when user presses it, enters the website.
    > This is working properly in Internet Explorer ( perhaps, it was
    > developed using Front Page?) But is not working with FireFox.
    >
    > where could be the problem, how to modify it.[/color]

    Start by validating the HTML.

    Then, check the JS Console in FF for any errors.

    --
    Randy
    comp.lang.javas cript FAQ - http://jibbering.com/faq & newsgroup weekly

    Comment

    • DU

      #3
      Re: FireFox is not Rendering Javascript functions

      Phoe6 wrote:
      [color=blue]
      > The following Java Script is present on a page, which displays a Hover
      > Enter gif and when user presses it, enters the website.
      > This is working properly in Internet Explorer ( perhaps, it was
      > developed using Front Page?) But is not working with FireFox.[/color]


      Correct. This is MSIE-specific functions, specific code (behaviors),
      proprietary code, not W3C web standard code.

      If you only need to display an hover Enter gif and when user presses it,
      enters the website, then that would be easy to develop according to W3C
      web standards and it would work in MSIE 5+ too.

      DU
      --
      The site said to use Internet Explorer 5 or better... so I switched to
      Firefox 1.0.4 :)

      Comment

      Working...