Results 1 to 8 of 8

Thread: Does anyone know what JSFX is?

  1. #1
    Join Date
    Dec 2006
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Does anyone know what JSFX is?

    Hello,

    I am currently doing a skin however in IE the page has loaded but with errors, the error shown is:

    Line: 474
    Char: 1
    Error: 'JSFX' is undefined
    Code: 0

    Can someone please help me know the solution for this issue?

    Thank you very much!

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Probably.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    May 2006
    Location
    Sydney, Australia - Near the coast.
    Posts
    1,995
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default

    ...you need to show us your code. We're not mind-readers or remote-controllers (and the like).
    Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
    Currently: enjoying the early holidays :)
    Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide

  4. #4
    Join Date
    Feb 2007
    Posts
    145
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Exclamation

    It sounds like it may be javascript. I put JSFX into Google it the entry that it brought up was this http://www.javascript-fx.com/.

  5. #5
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    I'm sure there's an object/function/variable/etc named JSFX that is being called somewhere on your page before it is defined, or it is never defined.
    But to actually fix it, we would need to see more.
    I'm guessing that JSFX does mean javascript effects, though it may or may not be that website, since it's a fairly logical abbreviation.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  6. #6
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    That was my assumption as well.
    Example:
    Code:
    <script type="text/javascript">
    alert(JSFX);
    </script>
    should return:
    "undefined".
    - Mike

  7. #7
    Join Date
    Dec 2006
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sorry I should have clarified with more information.
    All the skin code is within a XML file, I have searched for JSFX in it and found the following at the bottom of the style:

    Code:
    <script language="JavaScript" src="$stylevar[imgdir_misc]/rollovers.js" type="text/javascript"></script>
    
    <script language="JavaScript" type="text/javascript">
    <!--
    JSFX.Rollover("register",    "$stylevar[imgdir_misc]/register_over.gif");
    JSFX.Rollover("usercp",    "$stylevar[imgdir_misc]/usercp_over.gif");
    JSFX.Rollover("faq",    "$stylevar[imgdir_misc]/faq_over.gif");
    JSFX.Rollover("members",    "$stylevar[imgdir_misc]/members_over.gif");
    JSFX.Rollover("calendar",    "$stylevar[imgdir_misc]/calender_over.gif");
    JSFX.Rollover("daily",    "$stylevar[imgdir_misc]/daily_over.gif");
    JSFX.Rollover("new",    "$stylevar[imgdir_misc]/new_posts_over.gif");
    JSFX.Rollover("search",    "$stylevar[imgdir_misc]/search_over.gif");
    JSFX.Rollover("links",    "$stylevar[imgdir_misc]/quicklinks_over.gif");
    JSFX.Rollover("logout",    "$stylevar[imgdir_misc]/logout_over.gif");
    //-->
    </script>]]>
    I am not using this at the moment, also there is an external xml file named rollovers.js, I tried to remove the above code but once I uploaded the xml file it gave me an error.

    I hope this has helped you get a better idea of my issue.

    Thanks,

  8. #8
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    There must be a server-side script acting here, because having:
    "$stylevar[imgdir_misc]/rollovers.js"
    for a js file source seems a little odd. Make sure that the file is actually being loaded.
    It seems as if the JSFX object hasn't been loaded, or otherwise the external js isn't linking correctly.
    - Mike

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
  •