if ( $('html').attr('lang') == 'fr-FR' ) {
// do this
} else {
// do that
}
var attr = $(this).attr('name');
// For some browsers, `attr` is undefined; for others,
// `attr` is false. Check for both.
if (typeof attr !== 'undefined' && attr !== false) {
// ...
}