Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Kind of new to learning jQuery, I wrote this script.

<script type="text/javascript">
    $(document).ready(function(){
        alert($("#myInput").value);
        alert($("#myInput").length);
    });
</script>

<input id="myInput" value="Hello, World!" type="text" />

I don't know why it is not why it always shows me:

undefined
1

While the expected outptu is:

Hello, World!
13

Please advice me. Thanks in advance.

share|improve this question
Format your code properly! – Praveen Kumar Jan 31 at 18:26

closed as too localized by Xander, Praveen Kumar, Felix Kling, undefined, Jai Jan 31 at 18:45

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

4 Answers

up vote 2 down vote accepted

These kind of questions have been discussed and answered many times. Always, do a search before answering. Let me give you some suggestions.

  1. You have built-in functions like .val(), which is mainly used for getting the current value of the form inputs, when you have different types of them like textbox, checkbox, radio, textarea, and each of them use different types. So, change your first script this way:

    alert($("#myInput").val());
    
  2. The object returned by $("#myInput") would be a jQuery collection of elements. So, there is only one <input type="text" id="myInput" />. You need to use $("#myInput").val().length, and that gives the length of the value in the textbox. So, change your second script to:

    alert($("#myInput").val().length);
    
share|improve this answer
Thanks. Sorry I am very new to jQuery. – user2030089 Jan 31 at 18:31
Er... Why the downvote? Seriously? – Praveen Kumar Jan 31 at 18:39
Thanks for the quick answer. – user2030089 Jan 31 at 18:47

value isn't a valid jQuery method. You probably want:

$(document).ready(function(){
    alert($("#myInput").val());
    alert($("#myInput").val().length);
});

The .val method (with no parameters passed) returns the matched element's current value (if applicable). With normal/basic Javascript, you would have used .value on an element object, but $() returns a "jQuery object" that is nothing like an HTMLElement (what is returned from document.getElementById). So a jQuery object doesn't have a value property and returns undefined. Whereas document.getElementById("myInput").value (and adding .length at the end) would've worked for you.

The .length property is a basic property of string variables in Javascript (and arrays). Since the result returned from $() is an array-like object, it has a length property that represents how many elements matched your selector. In your case, it matched 1, the element with the id of "myInput".

share|improve this answer
Thanks. Sorry I am very new to jQuery. – user2030089 Jan 31 at 18:32
4  
@StackOverflow: jQuery has great documentation: api.jquery.com. It's worth spending some time just having a look at what all those methods are doing. – Felix Kling Jan 31 at 18:32

You can use a val() method of jQuery object, try something like this:

$(document).ready(function(){
    var value = $("#myInput").val()
    alert('Value: ' + value);
    alert('Value: ' + value.length);
});
share|improve this answer

Don't use .value. Use this:

alert($("#myInput").val());
alert($("#myInput").val().length);
share|improve this answer