I have this HTML:
<div id="main"><div id="mainly">11</div><div id="mainly">22</div></div>
I want to select the div with value 11.How to do this? I tried:
$("<div id="mainly">11</div>")
,but it didn't work... I don't have only two divs with id="mainly".