Hi,
From a CSS I am having trouble combing the document() and id()
functions. I have them working independently, but can't find the
correct syntax to combine them.
content: xpath("id(current()/@idref)/displayName"); - this works
content:
xpath("document(current()/@href)//*...@id=current()/@idref]/displayName");
- this works - ie the longhand version of id
but I can't combine document() and id() - the following doesn't work but
it illustrates one of the many variants I have tried
content:
xpath("document(current()/@href)//id(current()/@idref)/displayName");
Thanks for any assistance
Scott