[Proto-Scripty] Ajax.Request's getStatus and success

2009-06-03 Thread Cliff
ions online. Also, under what cases do transports not return any status, and are these cases also to be construed as being successful? Or...am I missing something else that is at work here? Any thoughts and insights are greatly appreciated -- thanks in advance! Cheers, Cliff --~--~-~--

[Proto-Scripty] Re: writeAttribute and onclick fails in IE6

2008-10-27 Thread Cliff
OK, I'll announce this thread as closed. Cheers, Cliff --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to prot

[Proto-Scripty] Re: writeAttribute and onclick fails in IE6

2008-10-27 Thread Cliff
ons I want to pass to the button. Is there any way to simplify the process? -- Cliff --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email

[Proto-Scripty] Re: writeAttribute and onclick fails in IE6

2008-10-26 Thread Cliff
> $('btn1').observe('click', function() { >   alert(123); >   alert(321); > }); That would be lovely, but all my methods live in a class. I need to pass variables to that class. Right now, I want to pass functions to that class. How can I do that? I only know how to pass functions inside a string

[Proto-Scripty] writeAttribute and onclick fails in IE6

2008-10-26 Thread Cliff
Hi all, I have a button like this: some button This code works in safari and firefox, but fails in IE6: $ ('btn1').writeAttribute('onclick', "alert(123)"); The onclick event does not fire in IE6. What should I do? I know Event.observe is better, but I want to use variables to pass a function, e.