I have a dilemma with two label elements. The first one should be displayed at all times, while the second one needs to remain hidden when in focus.
Is there a way to achieve this using jQuery?
<dd>
<label for="checkcode" class="check_label">=</label>
<label for="checkcode" class="checkcode_label">enter code</label>
<img src="/captcha" id="captcha" />
<input id="checkcode" type="text" name="checkcode" value="" />
</dd>
I must utilize these two specific "label" elements to accomplish the desired outcome. Setting a "value" is not an option.