You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
With the placeholder value set it seems to be blocking the clickability of the input field. This can be seen in the demo as well First Name. I don't like the fix i have locally but i added a z-index: 0; to my placeholder as a work around. I attempted to bind a click event to the placeholder but it seems that it was being caught somewhere on the chain. Not sure if IE9 is a worry but similar issue is occurring with the label click, this i solved with a
element.bind('click',function(ev){containerCtrl.setFocus(true);containerCtrl.input.focus();//any other existing code});