[jQuery] jEdible in place editor plugin

[jQuery] jEdible in place editor plugin


Has anyone here used this plugin? Where can I find some good examples
on how to use this? Right now, I've almost got it working, but for
some reason is is doing something funny that I can't seem to figure
out. Anyone see a problem with the code that I have below:
$(document).ready(function() {
$(".editable_textarea").mouseover(function() {
$(this).css('background-color', '#ffffd3');
});
$(".editable_textarea").editable("/update.cfm", {
indicator : "<img src='/jquery/plugins/images/
indicator.gif'>",
    type : "textarea",
submit : "OK",
tooltip : "Click to edit..."
});
});
...
<div class="editable_textarea" id="#i#">#session.cart[i].quantity#</
div>
...
Please note that the #i# is a coldfusion variable.