Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
The FireBoard forum component development is still going on. In order to get better, FireBoard will be moved from the Best of Joomla website.
During this transition period, the forum in Best of Joomla will be closed to new posts.
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard
Little error at the bottom left. (1 viewing) (1) Guest
TOPIC: Little error at the bottom left.
#47907
Little error at the bottom left. 9 Months, 2 Weeks ago  
OK I just started a site and installed fireboard. Everything looked fine and dandy until I looked in the bottom left corner of IE7 (where the error icon show). I clicked on the error icon and got this:

Line: 73
Char: 3
Error: Object doesn't support this property or method
Code: 0
URL: www.cardtrickz.com/index.php?option=com_fireboard&Itemid=68

I know IE sucks at poppin out error codes so I looked this up in firefox to see what more they had to say:

Error: el.nodeName has no properties
Source File: www.cardtrickz.com/templates/ja_drimia/j...ssmenu/ja.moomenu.js
Line: 145

Error: ja_content.getCoordinates is not a function
Source File: www.cardtrickz.com/templates/ja_drimia/scripts/ja.script.js
Line: 72

So firefox is saying there's lines with errors which are:

if(el.nodeName.toLowerCase() == 'li'
and
var content_coor = ja_content.getCoordinates();

Another question just popped into my head right now. Both of there errors are happening within my templates folder. Is this a template problem? None of my other pages are displaying this error, only the forum pages. Well I've givin you as much information as I can. I hope I can get some help here.

Thanks,
Scott
scottaking (User)
Fresh Boarder
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#54637
Re:Little error at the bottom left. 5 Months, 2 Weeks ago  
You ever figure this out? Same problem here, so asking everyone who ran into this...seems LOTs of people. Any idea how to rewrite the line to clear the error?

I don't see any js conflicts.
Terp (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#54678
Re:Little error at the bottom left. 5 Months, 2 Weeks ago  
Yeah I ended up fixing that problem. I forgot what I had to do but it has been answered in another forum somewhere on the internet. I'm gonna go look for the answer. If I can't find what I did, I'm pretty sure the conflict was with the template using mootools and it was conflicting with Fireboard forum. If I don't respond soon try looking up incompatibilities with Fireboard and mootools.
scottaking (User)
Fresh Boarder
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#54680
Re:Little error at the bottom left. 5 Months, 2 Weeks ago  
I finally remembered what that problem was. It was indeed mootools (template) conflicting with jquery (Fireboard).

For Fireboard, I had to edit their fireboard.php file. Searched for Add required header tags. and added // infront of
$mainframe->addCustomHeadTag ('<script type="text/javascript" src="' . JB_JQURL . '"></script>';

And for the JA template, I had to edit the index.php file found within templates/ja_drimia/. Right below the head, I inserted
<? if (JRequest::getCmd('option' == 'com_fireboard' {?>
<script type="text/javascript" src="/components/com_fireboard/template/default/js/jquery-latest.pack.js"></script>
<? }?>


That is what worked for me. I can't guarantee it will work for you. Try it out, but back up those files first!

Hope that helps,
Scott
scottaking (User)
Fresh Boarder
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#54805
Re:Little error at the bottom left. 5 Months, 1 Week ago  
scottaking wrote:
I finally remembered what that problem was. It was indeed mootools (template) conflicting with jquery (Fireboard).

For Fireboard, I had to edit their fireboard.php file. Searched for Add required header tags. and added // infront of
$mainframe->addCustomHeadTag ('<script type="text/javascript" src="' . JB_JQURL . '"></script>';

And for the JA template, I had to edit the index.php file found within templates/ja_drimia/. Right below the head, I inserted
<? if (JRequest::getCmd('option' == 'com_fireboard' {?>
<script type="text/javascript" src="/components/com_fireboard/template/default/js/jquery-latest.pack.js"></script>
<? }?>


That is what worked for me. I can't guarantee it will work for you. Try it out, but back up those files first!

Hope that helps,
Scott


btw this is found in line 141 of components/com_fireboard/fireboard.php :
Code:

$mainframe->addCustomHeadTag ('<script type="text/javascript" src="' . JB_JQURL . '"></script>');


on mine what worked was to completely remove:

the mootools call of the index.php on the template ive used. it confllicts


- g
guilliam (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#54806
Re:Little error at the bottom left. 5 Months, 1 Week ago  
on second thought, that didnt fixed the prob.

look for your template's js for this occurence:
Code:


window.addEvent ('load', function() {
//equalHeight();
jaAddFirstItemToTopmenu();
//new MenuIcon($E('#ja-mainnav'));
});



its from a JA template. i just commented it out.

- g
guilliam (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
Go to top