$(document).ready(function() { $('#letter-a a').click(function(event) { event.preventDefault(); $('#dictionary').load('a.html'); }); $('#letter-b a').click(function(event) { event.preventDefault(); $.getJSON('b.json', function(data) { var html = ''; $.each(data, function(entryIndex, entry) { html += '
'; html += '

' + entry.term + '

'; html += '
' + entry.part + '
'; html += '
'; html += entry.definition; html += '
'; html += '
'; }); $('#dictionary').html(html); }); }); });