child-input 値を取得するにはどうすればよいですか。親divのクリックイベントから-
ダイナミック HTML
<div class="tableRowOdd">
<input type="hidden" value="28">
04/11/2012
</div>
JS
$('#historyContainer .tableRowOdd').live( 'click', function(e) {
// Here I want to get the hidden-input's value directly
// something like- $(this+'input').val()
console.log( $(this) );
});
$(this).html()から文字列操作を行いたくない
助けてください。