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 seem to be having trouble with my code. I need to say:

if ( $('html').attr('lang').val() == 'fr-FR' ) {
    // do this
} else {
    // do that
}

When I check the console, I just get an error telling me this isn't a function. Help would be appreciated.

Thanks,

share|improve this question
1  
You should be using data() for this sort of thing. – asawyer Jun 26 '12 at 15:55
1  
No. Html does have a attribute called lang. – Rich Bradshaw Jun 26 '12 at 15:58

2 Answers

up vote 12 down vote accepted

Just remove the .val(). Like:

if ( $('html').attr('lang') == 'fr-FR' ) {
    // do this
} else {
    // do that
}
share|improve this answer
Wow that was super fast! Thanks, it worked perfectly. – beefchimi Jun 26 '12 at 16:00
@beefchimi accept the answer then :) – Miguel Ribeiro Jun 26 '12 at 16:01
You answered to quickly dude, I have to wait 5 more minutes in order to accept it :) – beefchimi Jun 26 '12 at 16:03
Oops.. that's right! Sorry :) – Miguel Ribeiro Jun 26 '12 at 16:04

jQuery's attr method returns the value of the attribute:

The .attr() method gets the attribute value for only the first element in the matched set. To get the value for each element individually, use a looping construct such as jQuery's .each() or .map() method.

All you need is:

$('html').attr('lang') == 'fr-FR'

However, you might want to do a case-insensitive match:

$('html').attr('lang').toLowerCase() === 'fr-fr'

jQuery's val method returns the value of a form element.

The .val() method is primarily used to get the values of form elements such as input, select and textarea. In the case of <select multiple="multiple"> elements, the .val() method returns an array containing each selected option; if no option is selected, it returns null.

share|improve this answer
Very thorough, great response. Thanks. – beefchimi Jun 26 '12 at 16:06

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.