div を非表示にして、別の div がページに存在する場合にのみ表示するにはどうすればよいですか? 私はjqueryまたはjsが進むべき道だと推測しています....
<style type="text/css">
.always-here {
display:none;
}
</style>
<div class="im-here">This div exists on this particular page!</div>
<div class="always-here">This div is always here but has the style
display: none unless a div with the class "im-here" exists.</div>