Changes between Initial Version and Version 1 of Ticket #7745
- Timestamp:
- Dec 10, 2010, 12:29:43 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7745
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
wontfix
-
Property
Status
changed from
-
Ticket #7745 – Description
initial v1 1 1 Not sure if this is a bug or what since I'm a noob but Firefox 3.6.12 on Mac and XP is complaining on the attributeEquals selector :eq. My code could be to blame : 2 2 {{{ 3 3 // turn button to on-state and make un-mousable if in section 4 4 … … 6 6 7 7 if(level2!=0){ 8 $('.nav li:eq('+(level2-1) +')').css({height:44}).children().children().css({ width:310,height:33, fontSize:"11px", marginLeft:-25, textIndent: 10 }); 9 10 // makes current subsection unmouseable 11 $('.nav li:eq('+(level2-1)+') a').unbind(); 12 13 } 8 $('.nav li:eq('+(level2-1) +')') 9 .css({height:44}) 10 .children() 11 .children() 12 .css({ width:310,height:33, fontSize:"11px", marginLeft:-25, textIndent: 10 }); 13 14 // makes current subsection unmouseable 15 $('.nav li:eq('+(level2-1)+') a').unbind(); 16 } 17 }}}