Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

IE10 Placeholder blocking input focus #1394

@O-Mutt

Description

@O-Mutt

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
});

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions