[Proto-Scripty] Re: wierd setStyle Backgroundimage happenings..

2011-01-05 Thread Piotrek Reinmar Koszuliński
This is probably because when You set url for image from stylesheet which probably You've got in some css/ directory You set it like '../ images'. But when You set in in inline styles this files are in ./ images path. On 5 Sty, 11:23, Matt matthew.jones...@gmail.com wrote: I have read the other

[Proto-Scripty] Re: Encoding parameters in Ajax Request

2011-01-04 Thread Piotrek Reinmar Koszuliński
I can't undarstand one thing. How You encode Your original value to Sr +16%2b? Because when I use encodeURIComponent I get %20Sr%2016%2B which properly decodes to original value. EDIT: I read this topic second time and realised that the point is that it is prototype which encodes Your string and

[Proto-Scripty] Re: How to observe pure xmlHttpRequest response

2011-01-04 Thread Piotrek Reinmar Koszuliński
I don't know answer for the first question. But for the second is event capturing - http://www.quirksmode.org/js/events_order.html There are two ways of propagating events - from the outer elements and from inner. The first way is named event capturing. Unfortunately I can't find in