[Proto-Scripty] Re: How to make id added by ajaxUpdater visible to the rest of the page

2010-05-17 Thread Jinsa
Hellow! I tried to understand your problem and what comes out from your post is: it's messy. I don't have a solution for your problem but I'll try to help you as much as I can. What I'll try is to show you is the path to make your script works. So, First, let us explain what you want: You have a

[Proto-Scripty] Ajax.Request and evalJS bug

2010-05-17 Thread orbiter
I've a little web app that loads and unloads pages with script tags in them and even though I pass "evalJS: false" to the Ajax.Request I still get an error message that says pq is not defined http://localhost/test/javascript/prototype.js Line 605 return this.extractScripts()... How can I prevent

[Proto-Scripty] Re: Ajax.Request and evalJS bug

2010-05-17 Thread T.J. Crowder
Hi, `evalJS` tells Prototype not to evaluate JSON, not scripts.[1] Ajax.Request doesn't evaluate script tags at all. Ajax.Updater will, unless you pass it the `evalScripts: false` option.[2] If you're using Ajax.Request, the only way I'm seeing script tags get processed is if you then use that con