| Author |
|
GAmandola Newbie


Joined: 25 February 2010 Location: Italy
Online Status: Offline Posts: 5
Warning level: (0%)
 
|
| Posted: 28 February 2010 at 10:41 | IP Logged
|
|
|
Any ideas about the error on v80 version? The system write on line 232 an error for common.js file
for (i=0; i<navRoot.childNodes.length; i++) {
Thanks for any solutions.
PS I tried to attach the snapshot but the application doesn't work. There is an error for dile system object.
|
| Back to Top |
|
| |
GAmandola Newbie


Joined: 25 February 2010 Location: Italy
Online Status: Offline Posts: 5
Warning level: (0%)
 
|
| Posted: 28 February 2010 at 12:28 | IP Logged
|
|
|
Sorry, I didn't see the posted message before mine http://www.jibondev.com/a-shop/forum/forum_posts.asp?TID=31& amp;KW=common but for my point of view the problem is always not solved. Java supported browser show the problem too. I tested the shop on different machines e operating system and the error come up.
|
| Back to Top |
|
| |
Jibon Admin Group

Developer
Joined: 01 October 2003 Location: Bangladesh
Online Status: Offline Posts: 72
Warning level: (0%)
 
|
| Posted: 01 March 2010 at 15:30 | IP Logged
|
|
|
It will be more helpful if you give your URL which way I
can see your mentioned problem. Some of my members find
that problem when they select wrong language file, after
that they edited language file and solved that problem.
However I requesting you to give your shop location (URL)
which way I can understand that problem properly
|
| Back to Top |
|
| |
GAmandola Newbie


Joined: 25 February 2010 Location: Italy
Online Status: Offline Posts: 5
Warning level: (0%)
 
|
| Posted: 02 March 2010 at 07:17 | IP Logged
|
|
|
This is the link: http://www.citegram.it/negozio/ and the products are for testing only.
Thanks
|
| Back to Top |
|
| |
Jibon Admin Group

Developer
Joined: 01 October 2003 Location: Bangladesh
Online Status: Offline Posts: 72
Warning level: (0%)
 
|
| Posted: 03 March 2010 at 19:22 | IP Logged
|
|
|
your given URL shows no error in js. I browsed your URL. It
shows OK. I dont understand what kind of problem it is bcos
I dont find it
|
| Back to Top |
|
| |
Ramm Developers

Founder
Joined: 12 February 2009 Location: Belgium
Online Status: Offline Posts: 3
Warning level: (0%)
 
|
| Posted: 06 March 2010 at 08:30 | IP Logged
|
|
|
Hi,
The code you are talking about, is based on the tutorial
on http://www.alistapart.com/articles/horizdropdowns/. It
is used for horizontal menu's, like in the example
here:http://www.alistapart.com/d/horizdropdowns/barebones
.htm
If you are using this sliding-out-menu, you can simply
delete the code:
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("menulist");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes;
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload=startList;
------
If you do wish to use this code, the error is caused by
the fact that the javascript searches for "menulist"-id,
but that the menulist we try to refer to, does not has an
id attached. So somewhere in the asp-code, you will have
to find where it is creating the menu, and make sure that
the top <ul> get's the ID "menulist".
Regards,
Ramm
|
| Back to Top |
|
| |
Jibon Admin Group

Developer
Joined: 01 October 2003 Location: Bangladesh
Online Status: Offline Posts: 72
Warning level: (0%)
 
|
| Posted: 06 March 2010 at 18:40 | IP Logged
|
|
|
thank you ramm
|
| Back to Top |
|
| |
GAmandola Newbie


Joined: 25 February 2010 Location: Italy
Online Status: Offline Posts: 5
Warning level: (0%)
 
|
| Posted: 06 March 2010 at 19:20 | IP Logged
|
|
|
Ok. Problem Solved. Take a look on page banner.inc.asp into the zip file downloadable There are some line to added about what you wrote, Ramm. I revised the italian language and the images too if you want a copy let me know. I am the first translator...remember me....some year ago?
Thanks to all of you for support. Send me a banner (max width 141px) and I will put in my website.
|
| Back to Top |
|
| |