Skip to content

Instantly share code, notes, and snippets.

@romot-co
Created December 7, 2014 02:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save romot-co/37c78872ec3f1d3861a9 to your computer and use it in GitHub Desktop.
Save romot-co/37c78872ec3f1d3861a9 to your computer and use it in GitHub Desktop.
jQueryでdc:titleのような : (コロン) があるXMLタグの中身を読む ref: http://qiita.com/futosu/items/ad61eb7584dc70ccce76
<dc:title>タイトル</dc:title>
$( xml ).find( 'dc:title' ).text();
$( xml ).find( 'title, dc\\:title' ).text();
$( xml ).find( 'dc\\:title' ).text();
$( xml ).find( 'title' ).text();
$( xml ).find( 'title, dc\\:title' ).text();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment