I want to focus the first input element that is not type=hidden. I've got this far but it will still attempt to focus hidden elements.
$('#content input:first').focus();
|
I want to focus the first input element that is not
|
||||
|
|
|
Use the
If it's too much for you, use
|
||||
|
|
|||||
|
|
You will need to select the element filtering with its attribute and appearing first.
|
|||
|
|