To get the id from the wildcard match:
$('[id^=pick_]').click(_x000D_
function(event) {_x000D_
_x000D_
// Do something with the id # here: _x000D_
alert('Picked: '+ event.target.id.slice(5));_x000D_
_x000D_
}_x000D_
);
_x000D_
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>_x000D_
<div id="pick_1">moo1</div>_x000D_
<div id="pick_2">moo2</div>_x000D_
<div id="pick_3">moo3</div>
_x000D_