I removed all my other scripts thinking they may be interfering with
the Request.HTML. But the error still occurred.
I don't want to scrap this!!
Erik
On Mar 3, 2009, at 2:15 PM, Fábio Costa wrote:
Thats strange...
I see the bug... but dont know the answer...
And ust as advice you should reconsider using both jquery and
mootools at the same site...
I see you got lavalamp for jquery, it haves a mootools version, wich
has mootools effects (better), google for it.
The labelify script i've never heard of it...
Fábio Miranda Costa
Engenheiro de Computação
http://meiocodigo.com
On Tue, Mar 3, 2009 at 3:42 PM, Erik R. Peterson <[email protected]>
wrote:
I am not seeing this problem in IE.
Erik
On Mar 3, 2009, at 1:35 PM, Erik R. Peterson wrote:
I copied it and I'm still getting an error after I click on a HOME
LINK or reload.
Again, it works on the initial page load when the cache is empty it
appears.
Erik
On Mar 3, 2009, at 1:31 PM, Fábio Costa wrote:
window.addEvent('domready', function() {
if (!window.demo_path) window.demo_path = '';
var demo_path = window.demo_path;
var req = new Request({url:demo_path+'appoint.htm',
onSuccess: function(html) {
$('result1').set('html', html);
},
onFailure: function() {
$('result1').set('text', 'The request
failed.');
}
});
$('makeRequest').addEvent('click', function() {
req.send();
});
});