[Proto-Scripty] Re: complete handler for effects.js

2009-08-28 Thread Alex McAuley
Not sure when it was added, i have only in the last week or so been using it myself!... Alex Mcauley http://www.thevacancymarket.com - Original Message - From: Scott Haines sc...@newfrontproductions.com To: Prototype script.aculo.us prototype-scriptaculous@googlegroups.com Sent:

[Proto-Scripty] Stack Overflow in ie6/7 using prototype 1.6.1_rc3 and ext 3.0

2009-08-28 Thread Jared
I am really having a difficult time solving this one todayif any of you guys are using Ext with prototype please, please help me with this one At this point I am no longer even running any ext code at all I am only trying to get the page to load without creating a stack overflow error.

[Proto-Scripty] Re: change DOM on select option

2009-08-28 Thread T.J. Crowder
Erm, I kind of forgot the links: [1] http://prototypejs.org/api/element/observe [2] http://prototypejs.org/api -- T.J. On Aug 28, 9:56 am, T.J. Crowder t...@crowdersoftware.com wrote: Hi,    $('#englisch').onfocus = function() { $() accepts IDs, not selectors -- I'm guessing you're

[Proto-Scripty] Re: stopping the PeriodicalExecuter

2009-08-28 Thread Daniel Rubin
Walter Lee Davis wrote: You need to create a reference to the PE, and call stop on that reference. var pe; pe = new PeriodicalExecuter(...); ...later, in another script... pe.stop(); pe has to be a global variable, but if both the start and stop of the PE happens inside a

[Proto-Scripty] change DOM on select option

2009-08-28 Thread clicforw...@googlemail.com
Hello, I need to change content of a dom element on select a option. I tried to handel it like this: script type=text/javascript document.observe(dom:loaded, function() { $('#englisch').onfocus = function() { $('div').replace('pThis is English/p'); } }); /script select name=select

[Proto-Scripty] Re: Prototype and Cross Domain Access

2009-08-28 Thread david
Hi emooney, You're exemple were launch from your computer locally, not from an external website. I try your exemple and it works in IE6 FF3.5 But in real website, that shouldn't work for both and all other browser, because AJAX should be submitted to the same domain/subdomain as the document

[Proto-Scripty] Re: More useful clone method

2009-08-28 Thread Matt Foster
Scenario for you... What if I have a parent object that I use deepClone on and it has child elements that have event handlers, is this functionality preserved with the method? On Aug 26, 1:18 pm, watermark86 watermar...@gmail.com wrote: Well, I have x-mas presents.  I give it it works for

[Proto-Scripty] Re: More useful clone method

2009-08-28 Thread T.J. Crowder
Interesting you should ask that question: http://groups.google.com/group/prototype-scriptaculous/browse_thread/thread/e5286fee9ac18a40/53ff3b0aec0b293d#53ff3b0aec0b293d -- T.J. :-) On Aug 28, 8:24 pm, Matt Foster mattfoste...@gmail.com wrote: Scenario for you... What if I have a parent