Danjojo schrieb:
Hi, thank you for helping me begin down this path.
Before I use the $.ajax function, do I need to install a codebase for
it?
Nope, $.ajax is part of jQuery core.
Please note that my example code in the success-callback was just that:
an example. You need to modify that!
What may actually be happening is this: The xml-documented is loaded via
AJAX, the success-callback is executed and throws an errors. Depending
on the type of errors you may see it on Firebugs console
(www.getfirebug.com). If not, try to add this to your document:
$().ajaxError(function() {
console.log(arguments);
});
If that doesn't help to see the actual problem either, please post a
test page here.
-- Jörn