[jQuery] autocomplete accents

2009-09-07 Thread sebastien creme
Hello, i'm trying to use automplete plugin and deal with accents in data and in search. The main problem is how to display 'déb...' or 'dèb...' when user inputs 'deb'. I have started to modify autocomplete code in order to make this happen. The main parts are in matchSubset and highlight

[jQuery] Re: IE iframe bug? Attributes not available on $(document).ready - any advice?

2009-05-21 Thread sebastien creme
have you tried .height() instead of .attr('height') ? this method sjould handle crossbrowsing issues! On May 20, 11:53 pm, nabrown78 nabrow...@gmail.com wrote:  Just to note, maybe the problem is related to document.ready firing too early within iframe :

[jQuery] Re: No event on node after add node.

2009-05-20 Thread sebastien creme
Does the item2-1 loaded via ajax ? if true you might use .live() to let jquery add event handler after all dom node loaded asynchronously. in your example it could give something like : $(span[id]).live('click', function() { .. On May 19, 9:15 pm, mrkeyser mathieu.develo...@gmail.com wrote:

[jQuery] Re: New Plugin with IE problem

2009-05-14 Thread sebastien creme
Dynamic colspan setted via style property seems not work on IE. You can try this : td.colSpan which is used in msdn samples (oCell.colSpan = 4) : http://msdn.microsoft.com/en-us/library/ms532998%28VS.85%29.aspx sebastien On May 13, 3:21 pm, floepi flo...@gmail.com wrote: Anyone?? Still