CSS Selector (id Contains Part Of Text)


Answer :

Try this:



a[id*='Some:Same'][id$='name']


This will get you all a elements with id containing




Some:Same




and have the id ending in




name




<div id='element_123_wrapper_text'>My sample DIV</div>


The Operator ^ - Match elements that starts with given value



div[id^="element_123"] {

}


The Operator $ - Match elements that ends with given value



div[id$="wrapper_text"] {

}


The Operator * - Match elements that have an attribute containing a given value



div[id*="wrapper_text"] {

}


The only selector I see is a[id$="name"] (all links with id finishing by "name") but it's not as restrictive as it should.



Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable