It works fine, the only thing I want to add is to show the plus sign in the down right corner also when I am writing in an input field or generally on the mouseover-effect of input elements (e.g. select-boxes).
I tried to add another selector inside AutoFill.js to select the input elements and add the autofill functionality to the parent element (<td>) but my try doesn't work:
$('tbody>tr>td>input', this.dom.table).parent().live( 'mouseover mouseout', function (e) {
that._fnFillerDisplay.call( that, e );
} );
Can anybody explain me how I can correct the selector?