Displaying 3 results from an estimated 3 matches for "q0splwlytkpr7s880joybq".
2006 May 28
13
JSON not auto-evaluated
Hi,
please consider this stripped down example:
new Ajax.Request(''foo.php'', {
onSuccess: function(t, json) {
alert(json.myParam);
}
});
According to http://www.sergiopereira.com/articles/prototype.js.html, the
second param is supposed to be the evaluated json object IF the X-JSON header
is send in the response. I send the header in my script. However, the json
var
2006 May 22
13
Canceling a specific effect
Is there a way to cancel a specific effect? For instance; Effects are
added to the queue. Before actually processing the effect, I''d like to
check a condition & cancel the effect if necessary.
Here''s the code excerpt:
var menu = {
toggleText: function(element,toggle) {
var vis = $(element+''Text'').visible();
if (toggle && !vis)
2006 May 02
6
Stopping the Ajax.PeriodicalUpdater -- My Kludge?
Well, I''ve been burning the midnight oil trying to figure out how to
issue the stop() command to a PeriodicUpdater. I''ve come up with a
solution that uses setTimeouts to call the stop function. I think my
solution is very kludgey... especially since I''m new to Javascript +
Prototype.
Can anyone let me know if the below code is at all proper? :)
---------
Summary: A