Changes between Version 15 and Version 16 of JavaScript-XPath

Show
Ignore:
Timestamp:
11/14/07 17:38:51 (6 years ago)
Author:
amachang (IP: 203.112.24.227)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JavaScript-XPath

    v15 v16  
    7373#!js 
    7474//Executable 
    75 var result = document.evaluate('//h1/node()[1]', document, null, 1, null); 
     75var result = document.evaluate('//h1/node()[1]', document, null, 2, null); 
    7676alert(result.stringValue); // JavaScript-XPath 
    7777}}}