[Proto-Scripty] Re: Scriptaculous. Effect.Grow problems

2011-02-17 Thread Phil
Can anyone help me out? This is kind of time sensitive. I've been playing around with this and haven't been able to make heads or tails of it. Is there some reason you can't do effect.grow with a higher z-index and absolute formatting? On Feb 2, 1:54 am, Phil wrote: > I'm having an issue with E

[Proto-Scripty] Stop Ajax.PeriodicalUpdater

2011-02-17 Thread houpdelta
Hi, I don't understand, I try to stop "Ajax.PeriodicalUpdater" but this not good. Why ? Thanks A part of my code : request_periodical : function(object) { // on regarde si la fonction est appelle au chargement car value sera egale a quelqye chose var test = new Ajax.Periodic

Re: [Proto-Scripty] Stop Ajax.PeriodicalUpdater

2011-02-17 Thread Bertilo Wennergren
houpdelta wrote: > I don't understand, I try to stop "Ajax.PeriodicalUpdater" but this > not good. > Why ? > [...] >            onSucess : function (xhr) { Try "onSuccess". -- Bertilo Wennergren berti...@gmail.com http://bertilow.com -- You received this message because you are subscribed t

[Proto-Scripty] Next dumb question

2011-02-17 Thread Jeffrey Lee
So why is it that when Javascript is updating the document, does the source not show the change? Does show->source merely reflect that which was loaded, but not the actual current document? Why is that? ___ Jeffrey Lee http://www.jeffreyalanlee.com jlee...@gmail.com

Re: [Proto-Scripty] Next dumb question

2011-02-17 Thread Walter Lee Davis
Source isn't being modified -- the DOM is. If you watch the source in Firebug, you can see it change, because Firebug updates with the DOM, and actually doesn't show the source code of your page, rather the interpreted source. (You may notice that attributes are in a different order than yo

[Proto-Scripty] Re: Next dumb question

2011-02-17 Thread RobG
On Feb 18, 10:28 am, Jeffrey Lee wrote: > So why is it that when Javascript is updating the document, does the source > not show the change?  Does show->source merely reflect that which was loaded, > but not the actual current document?  Why is that? View source shows the original HTML used t