Ticket #10389 (closed bug: invalid)
Selector by pattern in parents
| Reported by: | sultan99@… | Owned by: | sultan99@… |
|---|---|---|---|
| Priority: | undecided | Milestone: | 1.next |
| Component: | selector | Version: | 1.7b1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Selecting elements by patteren as $(this).parents("div[ @id = 'tc-' ]") not working in jqeury version 1.6.4 but it worked in jquery 1.2.3b.
The below code can be tested:
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html>
<head>
<title>jQuery Attribute Predicate Demo</title> <script type="text/javascript" src="lib/jquery.js"></script> <script>
$(document).ready(function(){
$('#start').click(function(){
p = $(this).parents("div[ @id = 'tc-' ]"); $("#print").html(p.attr('id'));
});
});
</script>
</head> <body>
<div id="tc-2">111
<div>222
<div>3333</div> <div id="start" style="color: red;">Press me</div>
</div>
</div>
<div id="print"></div>
</body>
</html>
Change History
comment:1 Changed 20 months ago by rwaldron
- Owner set to sultan99@…
- Status changed from new to pending
- Version changed from 1.6.4 to 1.7b1
- Component changed from unfiled to selector
- Milestone changed from None to 1.next
comment:2 Changed 20 months ago by sultan99@…
- Status changed from pending to new
I have saved the code in http://jsfiddle.net/5YZST/ But in local test the code works in jquery version 1.2 but not works in ver.: 1.6.
In jsfiddle.net in both version of jquery is not working!
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket!
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/ Open the link and click to "Fork" (in the top menu) to get started.