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.

i'm trying to obtain an input value with this:

var $a = ('#telephone_number').val();

alert($a);

But nothing, any idea?

telephone_number is the id of the input.

Regards

Javi

share|improve this question

2 Answers

use this

var $a = jQuery('#telephone_number').val();

OR

var $a = $('#telephone_number').val();
share|improve this answer
Thaqt's the same code as the OP has, which doesn't work for him. There's something else wrong. – GenericTypeTea Sep 24 '10 at 16:11
@GenericTypeTea: OP is missing the $ to signify a JQuery function call which is why it's not working. – Rohrbs Sep 24 '10 at 16:14
@JungleFeak - O yeah :). Sorry! +1 – GenericTypeTea Sep 24 '10 at 16:15
   var $a = $('#telephone_number').val();

    alert($a);

currently you are not passing the div id to jQuery, u are just doing (#tel_no) this is wrong.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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