├── .gitignore ├── live ├── grippie.png ├── css │ └── ui-lightness │ │ ├── images │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ ├── ui-icons_ffffff_256x240.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ └── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ └── jquery-ui-1.7.2.custom.css ├── preview.html ├── example │ ├── vcard-avenueq │ ├── vevent-bluesday │ ├── work-waterfall │ ├── work-gallery │ ├── schemaorg-person │ ├── schemaorg-product │ ├── schemaorg-book │ └── vcard-jack ├── live.css ├── index.html └── live.js ├── .gitmodules ├── README ├── LICENSE ├── lib ├── jquery.textarearesizer.compressed.js ├── jquery-ui-1.7.2.custom.min.js ├── json2.js └── jquery-1.6.4.min.js ├── jquery.microdata.json.js ├── test ├── jquery.microdata.html └── jquery.microdata.unit.js ├── jquery.microdata.vevent.js ├── jquery.microdata.vcard.js └── jquery.microdata.js /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /live/grippie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/grippie.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "test/qunit"] 2 | path = test/qunit 3 | url = https://github.com/jquery/qunit.git 4 | -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /live/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foolip/microdatajs/HEAD/live/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /live/preview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | ... and it will be rendered here 6 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Microdata is a syntax for embedding machine-readable metadata in HTML. 2 | 3 | MicrodataJS is a jQuery plugin that provides an API for accessing 4 | Microdata inspired by (but by necessity slightly different from) the 5 | native DOM API. 6 | -------------------------------------------------------------------------------- /live/example/vcard-avenueq: -------------------------------------------------------------------------------- 1 |2 | Both 3 | Princeton 4 | and 5 | Trekkie 6 | live at 7 | Avenue Q. 8 |
9 | -------------------------------------------------------------------------------- /live/example/vevent-bluesday: -------------------------------------------------------------------------------- 1 |Location: The RoadHouse
12 | ... 13 | 14 |
4 |
5 | Waterfall at the Polynesian
6 |Taken by Benjamin D. Esham. 7 | Licensed under the Creative 9 | Commons Attribution-Share Alike 3.0 United States License. 10 |
11 |
3 |
7 |
4 |
5 | Professor
6 |
4 |
4 | The Catcher in the Rye -
5 | Mass Market Paperback
6 | by J.D. Salinger
7 |
8 |
4 | 5 | Counter-Terrorist Unit 6 | (Los Angeles Division) 7 |
8 |
9 |
10 | 10201 W. Pico Blvd.
11 | Los Angeles,
12 | CA
13 | 90064
14 | United States
15 |
16 | 34.052339;-118.410623
17 |
If I'm out in the field, you may be better off contacting Chloe O'Brian if it's about work, or ask Tony Almeida if you're interested in the CTU five-a-side football team we're trying to get going.
38 | 39 | 40 | 41 | 42 | 43 |Update! 44 | My new home phone number is 45 | 01632 960 123.
46 | 47 |Pretentious Nonsense
30 |