[UPDATE] It only works in Firefox and not at Chrome nor Safari. I am following a jQuery tutorial (AHAH) but the description doesn't show up in the "show more" section when I click on the flowers.
$(document).ready(function(e) {
var $flowers = $('#flower-items');
$('#flower-items').find('a').on('click', function(e){
e.preventDefault();
var $desc = $('#flower-description');
switch($(this).attr('href')) {
case 'calla.html' :
$desc.load('fragments/lilies.html');
break;
case 'sunflowers.html' :
$desc.load('fragments/sunflower.html');
break;
case 'iris.html' :
$desc.load('fragments/irises.html');
break;
case 'alstromeria.html' :
$desc.load('fragments/peruvian.html');
break;
}