Side navigation
#10389 closed bug (invalid)
Opened September 30, 2011 02:14PM UTC
Closed September 30, 2011 08:12PM UTC
Selector by pattern in parents
Reported by: | sultan99@mail.ru | Owned by: | sultan99@mail.ru |
---|---|---|---|
Priority: | undecided | Milestone: | 1.next |
Component: | selector | Version: | 1.7b1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
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>
Attachments (0)
Change History (3)
Changed September 30, 2011 02:17PM UTC by comment:1
component: | unfiled → selector |
---|---|
milestone: | None → 1.next |
owner: | → sultan99@mail.ru |
status: | new → pending |
version: | 1.6.4 → 1.7b1 |
Changed September 30, 2011 02:29PM UTC by comment:2
status: | pending → 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!
Changed September 30, 2011 08:12PM UTC by comment:3
resolution: | → invalid |
---|---|
status: | new → closed |
This is a question for the forum, not the bug tracker. Remove the @
.
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.