Bug Tracker

Ticket #2767 (closed bug: duplicate)

Opened 7 months ago

Last modified 4 months ago

The select() event has problem in IE6

Reported by: pdzyq Assigned to: anonymous
Type: bug Priority: minor
Milestone: 1.2.4 Component: event
Version: 1.2.3 Keywords: select
Cc: Needs: Review

Description

The example here in http://docs.jquery.com/Events/select could not work at all when i was using IE 6,
although it seems that there is no problem in firefox 2.0.0.14.
In fact,everytime i want to trigger select event,i have to put the code like this :

$("input[name='in_code']").each(

function(i,value){

value.select();

}

);

to ensure it may work correctly in both IE and Firefox.
And if i use $("input[name='in_code']").select() , it always cannot work in IE6.
But if i use $("input#codeinput").select(),it will be all right.

Attachments

Change History

Changed 4 months ago by flesler

  • status changed from new to closed
  • resolution set to duplicate

Duplicate of #3054.

Note: See TracTickets for help on using tickets.