Bug Tracker

Opened 15 years ago

Closed 15 years ago

#1773 closed bug (fixed)

'last' doesn't work in firefox 2.0.0.7 windows

Reported by: alfrombrum Owned by:
Priority: major Milestone: 1.2.2
Component: core Version: 1.2.1
Keywords: Cc:
Blocked by: Blocking:

Description

the demo on:

http://docs.jquery.com/Selectors/last

doesn't return only the last row, but returns the whole table.

Change History (2)

comment:1 Changed 15 years ago by davidserduke

The problem was the demo wasn't actually doing anything. The table was showing the 3 lines correctly and the code just showed:

$("tr:last")

so I changed it to

$("tr:last").css('backgroundColor', 'yellow');

And it seems to work fine. So I'd consider this closed unless you can have additional information.

comment:2 Changed 15 years ago by john

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.