Thanks for your response. I've actually managed to prove on a test server that the fact that Domino doesn't use UTF-8 by default isn't the root cause. This is an attempt to mimic the code sample at http://demos.mootools.net/Fx.Slide however I get the same error at the same line with several other tests. Prototype and mootools scriptlibraries are the latest non-beta downloads from their respective websites.
HTML generated by Domino as follows: <html> <head> <meta http-equiv="content-type" content="text/html; charset=us- ascii"> <title>Moo Test</title><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <meta http-equiv="cache-control"content="no-cache" /> <base href="http://ymt-gwsv2/web/appwork.nsf/" /> <script type="text/javascript" src="prototype.js"></script> <script type="text/javascript" src="mootools.js"></script> <script type="text/javascript" src="mootest.js"></script> <link href="/web/appwork.nsf/style.css?openpage" rel="stylesheet" type="text/css" /> <script language="JavaScript" type="text/javascript"> <!-- document._domino_target = "_self"; function _doClick(v, o, t) { var url="/web/appwork.nsf/fmMOOFX?ReadForm&Click=" + v; if (o.href != null) o.href = url; else { if (t == null) t = document._domino_target; window.open(url, t); } } // --> </script> </head> <body text="#000000" bgcolor="#FFFFFF"> <form action=""><a id="slideout" href="#">slideout</a> | <a id="slidein" href="#">slidein</a> | <a id="toggle" href="#">toggle</a> | <a id="hide" href="#">hide</a> <div id="divmisc"><tt><font size="4">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</font></tt></div> <input name="Form" type="hidden" value="fmMOOFX"> <input name="f_FormName" type="hidden" value="MooFX Test"> <input name="HTTP_Referer" type="hidden" value=""> <input name="HTTP_User_Agent" type="hidden" value="Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.9) Gecko/20071025 Firefox/ 2.0.0.9"> <input name="Query_String_Decoded" type="hidden" value="ReadForm"> <input name="Server_Name" type="hidden" value="xxxxxxxxx"> <input name="Remote_Host" type="hidden" value=""> <input name="Remote_Addr" type="hidden" value="xxx.xxx.xxx.xxx"> <input name="$V2AttachmentOptions" type="hidden" value="0"> <input name="f_WebDBName" type="hidden" value="web/appwork.nsf"> <input name="ArgNames" type="hidden" value=""> <input name="ArgValues" type="hidden" value=""> <input name="Query" type="hidden" value=""> <input name="CSSToUse" type="hidden" value=""> <input name="f_CSS" type="hidden" value="<link href="/web/ appwork.nsf/style.css?openpage" rel="stylesheet" type="text/css" />"></form> </body> </html> Javascript in mootest.js as follows: window.addEvent('domready', function() { var slide_misc = new Fx.Slide('divmisc'); $('slidein').addEvent('click', function(e){ e = new Event(e); mySlide.slideIn(); e.stop(); return false; }); $('slideout').addEvent('click', function(e){ e = new Event(e); mySlide.slideOut(); e.stop(); return false; }); $('toggle').addEvent('click', function(e){ e = new Event(e); mySlide.toggle(); e.stop(); return false; }); $('hide').addEvent('click', function(e){ e = new Event(e); mySlide.hide(); e.stop(); return false; }); }); Thanks for your help... Pseudonym --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
