Re: [Proto-Scripty] Ajax and screen readers

2010-11-09 Thread Richard Quadling
On 8 November 2010 17:32, Walter Lee Davis wrote: > Has anyone on this list built a site that used Ajax partial page replacement > techniques that also needed to be "visible" to a screen reader? How did you > go about it? > > I'm developing a telemedicine system, and it occurs to me that there may

[Proto-Scripty] Re: ajax request no works on Chrome - decoding fails

2010-11-09 Thread fashionpeople
Hi, I replaced escape with encodeURI. But decoding fails again. function sendMessage(baseUrl, idNickRcv, msg) { var requestObject = new Object(); requestObject.idNickRcv = idNickRcv; requestObject.msg = msg; var jsonRequest = JSON.stringify(request

[Proto-Scripty] Re: ajax request no works on Chrome - decoding fails

2010-11-09 Thread T.J. Crowder
Hi, > I replaced escape with encodeURI. But decoding fails again. Well, did you try actually doing what I suggested? -- T.J. On Nov 9, 4:07 pm, fashionpeople wrote: > Hi, > > I replaced escape with encodeURI. But decoding fails again. > >    function sendMessage(baseUrl, idNickRcv, msg) { > >

[Proto-Scripty] Re: ajax request no works on Chrome - decoding fails

2010-11-09 Thread fashionpeople
Hi, I replaced escape with encodeURI. But decoding fails again. function sendMessage(baseUrl, idNickRcv, msg) { var requestObject = new Object(); requestObject.idNickRcv = idNickRcv; requestObject.msg = msg; var jsonRequest = JSON.stringify(request

[Proto-Scripty] Re: ajax request no works on Chrome - decoding fails

2010-11-09 Thread fashionpeople
I tried use fixedEncodeURI like suggest in your links. But doesn't work. I didn't understand the problem. On 9 Nov, 17:25, "T.J. Crowder" wrote: > Hi, > > > I replaced escape with encodeURI. But decoding fails again. > > Well, did you try actually doing what I suggested? > > -- T.J. > > On Nov 9