vote up 0 vote down star

(answers aggregated into another question)

The following jquery 1.3.2 code works:

<input type="select" value="236434" id="ixd" name='ixd' />

<script>
console.log( $('#ixd') );
console.log( $("input[name='ixd']") );
</script>

Console shows:

[input#ixd 236434]

[input#ixd 236434]

However setting the input to "hidden" prevents the selectors working. Any clues?

<input type="hidden" value="236434" id="ixd" name='ixd' />

<script>
console.log( $('#ixd') );
console.log( $("input[name='ixd']") );
</script>

Console shows:

[]

[]

flag

3 Answers

vote up 0 vote down check

This may be more of an issue with the console. I ran a test and it seems to still grab the instance of the element. I can't exactly tell what you are trying to do here.

If you are just trying to validate wether the object was found check the length property

console.log( $('#xid').length );

If you are trying to get the value of the field then use the val method

console.log( $('#xid').val() );

Finally, its possible that in your solution the DOM hasn't fully loaded yet. Make sure you are wrapping your logic inside a document.ready call.

$(document).ready(function() {
    console.log( $('#xid').val() );
});
link|flag
Many thanks, this is the solution - but why does this not work in this instance when the <script> tags are below the element "declaration"? Usually this sort of operation doesn't require $(document).ready - why would it only be necessary when the input is hidden? – Andy Jun 15 at 15:50
@Andy, I don't know, I wonder if that's the case with all browsers? – bendewey Jun 15 at 19:19
vote up 0 vote down
<input type="select" value="236434" id="ixd" name='ixd' />

Is that even valid markup?

It appears that selecting a visible input retrieves the value of it, even without explicity calling .val(), whereas selecting a hidden one does not:

Try:

console.log( $('#ixd').val() );
console.log( $("input[name='ixd'][type='hidden']") );

and

console.log( $("input[name='ixd']").val() );
link|flag
vote up 2 vote down

Not sure why that would be failing. I do the same thing at work on a regular basis, and it works regardless of the formfield being hidden or not.

Perhaps try this:

<input type="hidden" value="236434" id="ixd" name='ixd' />

<script>
    console.log($("#xid").val())
</script>

That will get you the value of the hidden field. I'm not terribly familiar with jQuery, but perhaps it won't retrieve DOM elements that aren't supposed to be visible?

link|flag
+1: He should be using .val() to retrieve the value of the field. – Jon Tackabury Jun 15 at 15:30
Tried that, I was trying to point out that the selectors were not functioning rather than use the output :) – Andy Jun 15 at 15:50
Also, this code doesn't work either! – Andy Jun 15 at 15:52
Sorry, I have no idea then. I use jQuery with hidden fields all the time with no issues. – Jon Tackabury Jun 15 at 17:27
It appears it's a firebug bug of some description, thanks for your prompt reply :) stackoverflow.com/questions/997296/… – Andy Jun 15 at 18:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.