Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

menu does not validate
(1 viewing) (1) Guest
Go to bottomPage: 123
TOPIC: menu does not validate
#24301
menu does not validate 12 Years, 3 Months ago Karma: 0
I am getting the following validation errors when using ARI Ext Menu. Any Ideas?

Line 32, Column 196: character "&" is the first character of a delimiter but occurred as data
…x-menu-init-hidden"); }; if (Ext.isIE && typeof(MooTools) != "undefined" && ty…
✉
This message may appear in several cases:

You tried to include the "<" character in your page: you should escape it as "&lt;"
You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
Another possibility is that you forgot to close quotes in a previous tag.
Line 32, Column 197: character "&" is the first character of a delimiter but occurred as data
…-menu-init-hidden"); }; if (Ext.isIE && typeof(MooTools) != "undefined" && typ…
&#9993;
This message may appear in several cases:

You tried to include the "<" character in your page: you should escape it as "&lt;"
You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
Another possibility is that you forgot to close quotes in a previous tag.
Line 32, Column 231: character "&" is the first character of a delimiter but occurred as data
…IE && typeof(MooTools) != "undefined" && typeof(MooTools.More) != "undefined")…
&#9993;
This message may appear in several cases:

You tried to include the "<" character in your page: you should escape it as "&lt;"
You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
Another possibility is that you forgot to close quotes in a previous tag.
Line 32, Column 232: character "&" is the first character of a delimiter but occurred as data
…E && typeof(MooTools) != "undefined" && typeof(MooTools.More) != "undefined") …
&#9993;
This message may appear in several cases:

You tried to include the "<" character in your page: you should escape it as "&lt;"
You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
Another possibility is that you forgot to close quotes in a previous tag.
Line 104, Column 12: character "&" is the first character of a delimiter but occurred as data
Shows & Events <span class="ux-menu-arrow"></span>
&#9993;
This message may appear in several cases:

You tried to include the "<" character in your page: you should escape it as "&lt;"
You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe.
Another possibility is that you forgot to close quotes in a previous tag.
Line 32, Column 196: xmlParseEntityRef: no name
…x-menu-init-hidden"); }; if (Ext.isIE && typeof(MooTools) != "undefined" && ty…
&#9993;
Line 32, Column 197: xmlParseEntityRef: no name
…-menu-init-hidden"); }; if (Ext.isIE && typeof(MooTools) != "undefined" && typ…
&#9993;
Line 32, Column 231: xmlParseEntityRef: no name
…IE && typeof(MooTools) != "undefined" && typeof(MooTools.More) != "undefined")…
&#9993;
Line 32, Column 232: xmlParseEntityRef: no name
…E && typeof(MooTools) != "undefined" && typeof(MooTools.More) != "undefined") …
&#9993;
Line 104, Column 12: xmlParseEntityRef: no name
Shows & Events <span class="ux-menu-arrow"></span>
The administrator has disabled public write access.
 
#24318
Re:menu does not validate 12 Years, 3 Months ago Karma: 748
Hello,

Joomla! doesn't wrap javascript code which is included through Joomla! API with "CDATA" so these warnings appears.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#24338
Re:menu does not validate 12 Years, 3 Months ago Karma: 0
Is there something I can do to make it wrap the javascript or fix the errors?

Thanks

Jeremy
The administrator has disabled public write access.
 
#24340
Re:menu does not validate 12 Years, 3 Months ago Karma: 748
You can edit <joomla_directory>\modules\mod_ariextmenu\mod_ariextmenu\kernel\ExtMenu\class.ExtMenu.php file and replace the next code:

Code:


if (Ext.isIE && typeof(MooTools) != "undefined" && typeof(MooTools.More) != "undefined")



with the following one:

Code:


if (Ext.isIE) if (typeof(MooTools) != "undefined") if (typeof(MooTools.More) != "undefined")



Regards,
ARI Soft
The administrator has disabled public write access.
 
#26973
Re:menu does not validate 12 Years, 1 Month ago Karma: 0
Hi,

I have the same problem. The solution you gave does fix the W3C validation issue, but it seems to stop the drop-down menus from working.

Any ideas?
The administrator has disabled public write access.
 
#26974
Re:menu does not validate 12 Years, 1 Month ago Karma: 748
Hello,

Provide a link to a page where we can see a problem.

Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 123