PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> SELECT ?label WHERE { <http://dbpedia.org/resource/Tim_Berners-Lee> rdfs:label ?label }
$.sparql("http://dbpedia.org/sparql") .prefix("rdfs","http://www.w3.org/2000/01/rdf-schema#") .select(["?label"]) .where("<http://dbpedia.org/resource/Tim_Berners-Lee>","rdfs:label","?label") .execute(cbfunc);