[jQuery] select a div with a specific value

[jQuery] select a div with a specific value


I've a html page like this:
<div class="chess-board">
<div id="casa" style="position: absolute; top: 172px; left: 43px;"
value="b4"/>
<div id="casa" style="position: absolute; top: 172px; left: 86px;"
value="c4"/>
<div id="casa" style="position: absolute; top: 172px; left: 129px;"
value="d4"/>
<div id="casa" style="position: absolute; top: 172px; left: 172px;"
value="e4"/>
</div>
Can I select a div by the value??
$(".chess-board value='b4'")
Thanks,
Alfredo