Attribute Ends With [attr$="value"]S2C Home « Selectors « Attribute Ends With [attr$="value"]

Suffix match selector.

Shorthand version  $('[attr$="value"]')

Description

The [attr$="value"] selector, selects all elements that have the specified attribute name with an ending value matching the specified string.

Syntax

Signature Description
jQuery('[attr$="value"]')Suffix match

Parameters

Parameter Description
attrThe attribute name.
valueThe attribute value which can be either an unquoted single word or a quoted string.

Return

N/A.

Attribute Ends With [attr$="value"] ExamplesTop

Selects all elements that have the specified attribute name with an ending value matching the specified string.

The following example will select 'a' elements within 'h3' elements with a 'href' attribute that ends with 'html' and place a white border around those links. For our example this is all the links within the left sidebar that are the first indent and the breadcrumb above.



$(function(){
  $('#btn1').on('click', function() {
    $('h3 a[href$="html"]').css('border', '1px solid white');
  });
}); 

Press the buttons below to action the above code:


The following example will select 'option' elements within the form that have a value attribute ending with 'ed' and 'S' (case senstive) and change their background colors to orange and yellow respectively.

Look at the 'Select a pie shape:' options before and after pressing the buttons below.

When we press the left button any option value ending with 'ed' will have its background changed to orange.

When we press the right button any option value ending with 'S' will have its background changed to yellow.


$(function(){
  $('#btn2').on('click', function() {
    $('option[value$="ed"]').css('backgroundColor', 'orange');
  });
  $('#btn3').on('click', function() {
    $('option[value$="S"]').css('backgroundColor', 'yellow');
  });
}); 
Pie Survey     

Userame:      

Password:               

     

Which pie do you prefer?:

Select a pie shape: 

            

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