internet explorer 6 - jQuery UI Autocomplete - IE6 lockup -


before it, know, ie6 dead , smells it's dead. client has closed network, machines run ie6, 100% of user base :/

i'm using jquery ui , autocomplete widget, performs in firefox on ie6, small list of items (here 5, returned json item , description) it's locking browser when mouse on them. applying css seems may cause.

    $( "#searchtest" ).autocomplete({  source: function( request, response ) {   $.ajax({    url: "index.pl",    datatype: "json",    data: {     term: request.term    },    success: function( data ) {     response( $.map( data.items, function( item ) {      return {       label: item.id + ' - ' + item.label,       value: item.id      }     }));    }   });  },  minlength: 2 }); 

i can kind of replicate problems in ie6 using online demos, albeit lesser extent, it's slow doesn't hang browser. if can make suggestions improving performance in ie6 i'd happy hear them. i'm using default style sheet themeroller. thanks

doh! using plugin add round corners ie6: http://dillerdesign.com/experiment/dd_roundies/

i commented out , it's working way better! plugin in question eol (my bad not checking this). client have live functional system, no round corners till change browser versions.


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -