I'm having a hard time selecting all the buttons with value "bar" using jquery.
<div id="1">
<button>foo</button>
<button>bar</button>
<button>foo</button>
<button>bar</button>
</div>
please note I must start the select from div with id="1"
so something like ... $(#"1 button ....")
Thanks!