I have this code :
$('#location').html(location);
$('#temperature').append(temperature);
$('#temperature').attr("value", temperature);
$('#weather').html(weather);
$('#summary').html(summary);
$('#hourly').html(hourly);
I want make description for every word show in html . like this $('#hourly').html(hourly) + 'next 24 hours'
but when make like that not showing describe next 24 hours .