I am using span.js for some of my placeholders, it is nice, but there is one issue. In IE9 when you focusing input it shows x icon on the right hand side, and after focus out I can see my placeholder only when I click on x icon. I want to make it work as placeholder works - when there is no value placeholder needs to show even when I haven't clicked on x in IE.
Here is my code:
<div class="fieldWrap">
<label for="mobile_number">Mobile Number</label>
<div class="intl-tel-input">
<input name="Mobile Number" id="mobile_number" type="text" placeholder="Mobile Number" autocomplete="off">
</div>
<span style="margin: 0px; padding: 0px; left: 48px; top: 16px; display: block; position: absolute; z-index: 100000; cursor: text; background-color: transparent;">Mobile Number</span>
</div>