I'm using some simple jquery to add helper information to an input field when a user clicks into it.
$('.amount').focus(function(){
$(this).attr('placeholder', '$0.00');
});
$('.amount').focusout(function(){
$(this).removeAttr('placeholder');
});
<div class="input-field">
<input id="amount" class="amount" name="amount" type="text" maxlength="15" class="validate" />
<label for="amount">Deposit Amount</label>
</div>
https://jsfiddle.net/f9mvyz5f/1/
When the user enters the Deposit Amount Field, the placeholder $0.00 becomes visible - or at least it does in Chrome, Firefox and Edge. However this does not work in IE11. Is this another one of those attributes that IE11 doesn't support?