Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== XPath Notes and Tips and Tricks ====== ===== Finding all elements without a class ===== * Syntax <code java> //nodeset definition/[ not(@attribute_name <logical check>)] </code> * Examples %%//accesspoint//*[ not(@class)] %% would be all points under the //Accesspoint// node and all elements that didn't have an attribute called //class// %% //accesspoint//*[not(@class='hidden']) %% would be all points under the //Accesspoint// node and all elements that didn't have an attribute called //class// with a value of //hidden// plang/xpath.txt Last modified: 01/06/13 @ 20:54:16by 127.0.0.1