if ( options.navigation ) {
var current = $
(container).find("a").filter(options.navigationFilter);
if ( current.length ) {
if ( current.filter(options.header).length ) {
options.active = current;
} else {
options.active =
current.parent().parent().prev();
current.addClass("current");
}
}
}
After debugging with Firefox this function seems to make all the
magic, whein loading a page with a hash value I noticed that "if
( current.length ) {" lenght gets the value 0 thats why this function
is exited. I must have a closer look navigationFilter function.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---