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!
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!
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!
...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
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/.![]()
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
That was my assumption as well.
Example:
should return:Code:<script type="text/javascript"> alert(JSFX); </script>
"undefined".
- Mike
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:
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.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 hope this has helped you get a better idea of my issue.
Thanks,
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