[jQuery] some .get functions don't seem to be working in IE?

[jQuery] some .get functions don't seem to be working in IE?

Okay...
Without going into the whole thing, I'm getting some inconsistent behaviour
from the AJAX portion of jQuery in IE only.
http://www.commadelimited.com/recipes/
Click a category on the left and this function is run:
function searchByCategory(cat) {
    $.get("includes/q.cfc?method=searchByCategory&cat=" + cat,function(result){
        eval( 'var ' + result );
        update('#title',r.title)
        update('#content',r.content);
    });
};
That part works fine. Next, click a recipe name and this gets run:
function searchByRecipe(id,term) {
    $.get("includes/q.cfc?method=searchByRecipe&id=" + id + "&term=" +
term,function(result){
        eval( 'var ' + result );
        update('#title',r.title)
        update('#content',r.content);
    });
};
That part ALSO works fine in both browsers. It's when I click the Add to
Grocery List that I run into problems. When they click that button, this
function gets run:
function addRecipe(id) {
    $.get("includes/q.cfc?method=addRecipe&id=" + id,function(result){
        eval( 'var ' + result );
        alert(r.content);
        showShoppingList();
    });
};
It runs a Coldfusion function which adds that recipe ID to a session
variable. It's then supposed to run showShoppingList() which queries against
the db and returns a list of recipes currently in your list. It works
correctly in FF, but not in IE. The weird thing is that when click the Add
to Grocery list button, you'll see that the list of recipe IDs is prioperly
incremented. It just doesn't seem to be displaying them in the bottom left.
I can't determine if it's my Coldfusion function or the jQuery function. But
I suspect it's the jQuery function due to the fact that it works correctly
in FF. Also this did work correctly before I switched to the jQuery AJAX
library and the CF function didn't change. Anyone have any ideas?
I'm using Coldfusion/mySQL along with jQuery ($Rev: 110 $). I'll be happy to
provide any code to anyone who's interested in looking at it.
<!----------------//------
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
andy@icglink.com
615.370.1530 x737
--------------//--------->
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/