I need to get neighborhood element value.
HTML is
<div>
<input type='hidden' value='12345'>
<div id='click-this'>Click me</div>
</div>
How can i get "12345" by clicking "click-this" div ?
$('#click-this').click(function() {
??? 12345 ???
})