I am trying to build a jQuery when clicked on div #toggle, span inside div will show and when set to toggle mode, but when I use two or more div blocks, it only shows the first span. please help.
$(document).ready(function() {
$("div#toggle").click(function() {
$("#show").toggle();
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id='toggle'>this clicked
<span id='show'><p>Show this</p></span>
</div>
<div id='toggle'>
<span id='show'><p>fhslkjklsfjl</p></span>
</div>