[jQuery] Re: Stumped by AJAX and events

2008-09-05 Thread JDawson
ving a caching issue. Try these: > > once: > > $.ajaxSetup({cache:false}); // global setting to prevent caching > > then do your $.get's as you have them. Or: > > append a timestamp to your get url: > > $.get("recipients.xml?" + new Date().valueOf().toStr

[jQuery] Stumped by AJAX and events

2008-09-04 Thread JDawson
I am trying to use .get in a click handler to load some XML, as shown below. The handler will only work if I first call my getRecipients function in $(document).ready. I am really pulling my hair out with this. I can see in my Firebug console that the file request is being made via the click event