This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.
When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:
Hi, Joe
There is another solution to this problem. I noticed that the skin Artistera no such problem. I examined the difference. The difference in the file script.js. I deleted from this file extra lines and left only
-----------------
var artEventHelper = { 'bind': function(obj, evt, fn) { if (obj.addEventListener) obj.addEventListener(evt, fn, false); else if (obj.attachEvent) obj.attachEvent('on' + evt, fn); else obj['on' + evt] = fn; } };
var artLoadEvent = (function() { var list = [];
artEventHelper.bind(window, 'load', ready); return ({ add: function(f) { list.push(f); } }) })(); ----------------------------
and than add in layout.Master
<portal:SkinFolderScript ID="sfs1" runat="server" ScriptFileName="script.js" />
After these steps, everything was perfect
But this solution is not beautiful
Best regards, Alexander
I downloaded jquery nightly builds from http://docs.jquery.com/Downloading_jQuery
This version is Sun Feb 28 10:55:59 2010
Original version is Sat Feb 13 22:33:48 2010
The new version of the jquery, this error has been corrected!
Thanks buddy.
That is good to hear. jQuery makes a new release about every month, so this means we can expect it will be fixed in the next release of jQuery.
Best,
Joe