Skip to content

Instantly share code, notes, and snippets.

@tommorris
Created November 11, 2008 14:00
Show Gist options
  • Save tommorris/23849 to your computer and use it in GitHub Desktop.
Save tommorris/23849 to your computer and use it in GitHub Desktop.
/* JeniT's RDFa jQuery sample code */
rdf = $('#content p:first').rdf();
rdf
.where('?book dc:creator ?author')
.where('?author foaf:surname ?surname')
.filter('surname', /^A/)
.where('?book dc:titiel ?title')
.optional('?book dc:identifier ?isbn')
.each(function() {
addItem(this.author, this.book,
this.title, this.isbn);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment