Opened 15 years ago
Closed 14 years ago
#3288 closed bug (fixed)
attr('href') does not return a string in IE6
Reported by: | grosser | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.3 |
Component: | core | Version: | 1.2.6 |
Keywords: | Cc: | grosser, flesler | |
Blocked by: | Blocking: |
Description
var $link = $('#my_link') var href = $link.attr('href');is #panel_1 (when alert(href) in ie and ff) var $panel = $(href.toString()).hide();IE6 var $panel = $(href).hide();FF
Attachments (1)
Change History (5)
comment:2 Changed 15 years ago by
var $link = $('#my_link')
var href = $link.attr('href');is #panel_1 (when alert(href) in ie and ff)
var $panel = $(href.toString()).hide();IE6
var $panel = $(href).hide();FF
comment:3 Changed 15 years ago by
Cc: | grosser flesler added |
---|---|
need: | Review → Test Case |
Can you please provide a test case ? that is, a small html file with the minimum html/css/js necessary to reproduce the problem.
Changed 14 years ago by
this should reproduce the error, hide x in ff, but not in ie6
Note: See
TracTickets for help on using
tickets.