:langS2C Home « Selectors « :lang

Structural pseudo-class selector.

Shorthand version  $(':lang(language)')

Description

The :lang selector, selects all elements that match the specified language code.

  • This selector will check for the HTML lang common attribute within the specified elements.

If this selector is not preceded by another selector the universal selector ("*") is implied and so the whole DOM will be searched. Use another selector as in the examples below to narrow the search and improve performance.

Syntax

Signature Description
jQuery(':lang')Language pseudo-class selector match

Parameters

Parameter Description
languageA language code that may be hyphenated to further define it:
en - English
en-us - US English

Return

N/A.

:lang ExampleTop

Selects all elements that match the specified language code.

Selects all elements that match the specified language code.

When the button below is pressed the first time, the background colours of the paragraphs below will change, dependant upon the HTML lang common attribute that has been set.

A paragraph with a lang attribute and nl subcode.

A paragraph with a lang attribute and en-us subcode.

A paragraph with no lang attribute.

A paragraph with a lang attribute and fr subcode.

A paragraph with a lang attribute and en-gb subcode.


$(function(){
  $('#btn1').one('click', function() {
    $("p:lang(nl)").css('backgroundColor', 'lime'); 
    $("p:lang(fr)").css('backgroundColor', 'cyan'); 
  });
}); 

Press the button below to action the above code:

When the button below is pressed the first time, the background colours of the paragraphs below will change, dependant upon the HTML lang common attribute that has been set.

A paragraph with a lang attribute and en subcode.

A paragraph with a lang attribute and en-us subcode.

A paragraph with no lang attribute.

A paragraph with a lang attribute and en-gb subcode.


$(function(){
  $('#btn2').one('click', function() {
    $("p:lang(en)").css('backgroundColor', 'yellow'); 
    $("p:lang(en-us)").css('backgroundColor', 'orange'); 
    $("p:lang(en-gb)").css('backgroundColor', 'silver'); 
  });
}); 

Press the button below to action the above code:

jQuery 3.5 Basics

jQuery 3.5 Intermediate

jQuery 3.5 Advanced

jQuery 3.5 Reference

API by Function

API Alphabetically

Ajax

Attributes & Properties

Core & Internals

DOM Element Methods

Effects

Events

Filtering

Manipulation

Objects

Selectors

Attribute

Attribute Contains Prefix Selector

Attribute Contains Selector

Attribute Contains Word Selector

Attribute Ends With Selector

Attribute Equals Selector

Attribute Not Equal Selector

Attribute Starts With Selector

Has Attribute Selector

Multiple Attribute Selector

Basic

All Selector ('*')

Class Selector ('.class')

Element Selector

ID Selector ('#id')

Multiple Selector

Basic Filter

:animated Selector

:eq() Selector

:even Selector

:first Selector

:gt() Selector

:header Selector

:lang Selector

:last Selector

:lt() Selector

:not() Selector

:odd Selector

:root Selector

:target Selector

Child Filter

:first-child Selector

:first-of-type Selector

:last-child Selector

:last-of-type Selector

:nth-child() Selector

:nth-last-child() Selector

:nth-last-of-type() Selector

:nth-of-type() Selector

:only-child Selector

:only-of-type Selector

Content Filter

:contains() Selector

:empty Selector

:has Selector

:parent Selector

Form

:button Selector

:checkbox Selector

:checked Selector

:disabled Selector

:enabled Selector

:file Selector

:focus Selector

:image Selector

:input Selector

:password Selector

:radio Selector

:reset Selector

:selected Selector

:submit Selector

:text Selector

Hierarchy

Child Selector

Descendant Selector

Next Adjacent Selector

Next Siblings Selector

Visibility Filter

:hidden Selector

:visible Selector

Traversal

Utilities