I have a div that is hidden when the DOM is loaded, using hide().
<div class="disappear">
Some text appears here
</div>
How do I make the above div (.disappear) show when the input fields with class .master (one to three) are not empty. (Ideally, trigger it on .blur in each of the input fields.)
<div id="form">
<form>
<input type="text" name="one" class="master">
<input type="text" name="two" class="master">
<input type="text" name="three" class="master">
<input type="text" name="four" class="slave">
<input type="text" name="five" class="slave">
</form>
</div>
Thanks in advance!