You can use the tag <a>without a target (only hash on href) and use its attribute :focus: HTML: http://jsfiddle.net/sVxxZ/1/
<span class="dropdown">
<a href="#">
Dropdown
</a>
<span class="dropdown_content">asdf</span>
</span>
CSS
.dropdown_content {
display: none;
}
.dropdown a:focus + .dropdown_content {
display: block;
}
<a> () , :focus , - . , IE Firefox Chrome . .
:focus, (, ..), // , ( /). (<a> elements) , href ( ).
href #, (, ). , , - , , - :focus .
dropdown_content display:none, . sibling + dropdown_content, :focus ed ( HTML), display block, a . - ( - ), , :focus.
, , , CSS ( +) <div> <a>.
: http://jsfiddle.net/zsp7t/32/