[All Adaptavist Apps]

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In Confluence 2.8.2, we used a jQuery script to "decorate" the breadcrumbs. We accessed the ol#breadcrumbs.list element with this simple code :

Code Block
var breadcrumbsbreadcrumbs2=documentAJS.getElementById$('"breadcrumbs.list'");
var currentLvl=AJS.$("breadcrumbs.list").lastChild;

...

So, my question is the following : Is there any known problem when accessing via jquery an element with a "dot" inside its name ?

Note that in Confluence 2.8.2, accessing an element with a "dot" inside the name was not a problem...
Note also that accessing the element with javascript

Code Block
var breadcrumbs=document.getElementById('breadcrumbs.list');

works, but I don't want to use javascript but jQuery.