tags:

views:

27

answers:

1

How can i do this in jquery?

$('#SomeId input[type="hidden" AND name="somename"]')
+5  A: 
$('#SomeId input[type="hidden"][name="somename"]')
Reigel
An alternative is `input:hidden[name="somename"]`.
BalusC
@BalusC - yeah, I was thinking of that, but just want to go with the OP's example. ;)
Reigel