Hi guys,
Can someone give an example of an html page that uses xquery, do you need something else in order to run xquery.
I tried to run some xquery code from w3schools but it is not evaluating in the html page.
<html>
<ul>
{
for $x in doc("books.xml")/bookstore/book/title
order by $x
return <li>{$x}</li>
}
</ul>
</html>