Side navigation
#4603 closed bug (worksforme)
Opened April 28, 2009 09:58PM UTC
Closed June 12, 2010 06:42PM UTC
selector :last has incorrect behaviour on google chrome
Reported by: | thomas | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | unfiled | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
see the attached file:
version 1: correct id
var nb=$("#elementview .selected").size()-1;
var id= $("#elementview .selected").eq(nb).attr("id");
version2 incorrect id (Always the first one!)
id= $("#elementview .selected:last").attr("id");
Attachments (1)
Change History (1)
Changed June 12, 2010 06:42PM UTC by comment:1
resolution: | → worksforme |
---|---|
status: | new → closed |
Works fine for me with jQuery 1.4.2 and Chrome 5, despite the fact that the id values are invalid. (The W3C says id attributes cannot be all numeric.)