4,090
edits
No edit summary |
No edit summary |
||
Line 23: | Line 23: | ||
var people = $(this).find('.people').text(); | var people = $(this).find('.people').text(); | ||
var description = $(this).find('.description').text(); | var description = $(this).find('.description').text(); | ||
var type = $(this).find('.type').text(); | |||
// Update the fixed column content | // Update the fixed column content | ||
$('#article-title').html('<p style="font-weight: bold;">' + entryNumber + '</p><p>' + title + '</p>'); | $('#article-title').html('<p style="font-weight: bold;">' + entryNumber + '</p><p>' + title + '</p>'); | ||
$('#article-content').html('<p>People: ' + people + '</p><p>Description: ' + description + '</p>'); | $('#article-content').html('<p>People: ' + people + '</p><p>Description: ' + description + '</p><p>Type: ' + type + '</p>'); | ||
}); | }); | ||