I have managed to populate my drop down menu with a json object, which worked fine. Currently I am trying to display an image which is in a hidden div based on an option se
$('#dropDownDest').on('change', function() { if ($(this).val() == 'vol123r') { $('#imghide').removeClass('hide'); } else { $('#imghide').addClass('hide'); } });
FIDDLE DEMO