Opened 12 years ago
Closed 12 years ago
#7811 closed bug (worksforme)
populating hidden form fields in IE6
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | 1.6 |
Component: | unfiled | Version: | 1.4.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hi there,
I've discovered what I believe is a jQuery bug.
On one of our pages we inject HTML which includes some hidden form elements (type=hidden). These are then populated from another field on the page.
When I try to locate these form fields with a standard selector $('#myform-wrapper #hidden_field1') they come up as 'undefined' in IE6, but work just fine in other browsers. I've put a work around in place by doing a loop as follows
$.each($('#myform-wrapper input:hidden'), function(){
if ($(this).attr('id') == 'myid') {
do my stuff.
} });
This is obviously not ideal, the selector should really work here.
Change History (2)
comment:1 Changed 12 years ago by
Owner: | set to [email protected]… |
---|---|
Status: | new → pending |
comment:2 Changed 12 years ago by
Resolution: | → worksforme |
---|---|
Status: | pending → closed |
Following your use case, I cannot reproduce a bug
Thanks for taking the time to contribute to the jQuery project by writing a bug report.
Please submit a reduced test case, which reproduces the issue you are experiencing, on http://jsfiddle.net. So that we can investigate this issue further.
How to report bugs