Conditional template tags in Blogger template allows you to specify a part of your template code on specific types of pages or specific URLs.One practical application could be to display a widget on specific pages. You can hide sidebar on some pages, apply a meta tag to certain page or whatsoever. Complex Blogger templates make large use of...
Showing posts with label JavaScript. Show all posts
Showing posts with label JavaScript. Show all posts
Court Case Tracker Experiment
$(document).ready(function() {
$('#example').DataTable({
"ajax": "https://api.jsonbin.io/b/619557680ddbee6f8b0d6ba8/1",
"columns":
[
{"data": "Person"},
{"data": "Notes"},
{"data": "Labels"},
{"data": "City "},
]
});
});
"Person": "Brian Cherry",
"Notes": "",
"Labels":...
Paradise Fire Victims
$(document).ready(function() {
$('#example').DataTable({
"ajax": "https://api.myjson.com/bins/s9lze",
"columns":
[
{"data": "Last"},
{"data": "First"},
{"data": "Middle"},
{"data": "Age"},
{"data": "SEX"},
]
});
});
{ "data": "Name" },
{ "data": "DOD" },
...
Test: The Obit Files vis JSON
$(document).ready(function() {
$('#example').DataTable( {
"ajax": "https://api.myjson.com/bins/1gdo4o",
"columns": [
{ "data": "Name" },
{ "data": "DOD" },
]
} );
} );
Name
DOD
...
Structured Data - Starting Point Collection of Links
Structured Data markup validation and testing tools
function mbtlist(json) {
for (var i = 0; i json.feed.entry.length; i++)
{
var TotalPosts = json.feed.openSearch$totalResults.$t;
}
var listing = "Total = " +TotalPosts+ " Posts" ;
document.write(listing);
}
Total = 46 Posts
function mbtlist(json) {
for (var...