Forum Discussion
3 Replies
- dale_waterworthOccasional ContributorPS
Input of type="text" work fine... - karkadilValued ContributorI remember about such problem, but can't reproduce it right now.
As a workaround, try using Keys method instead of SetText - dale_waterworthOccasional ContributorOk thanks. Have gone with:
function clearTextAndSet(element, str) {
element.Keys("^[Hold]a[Release][Del]");
element.Keys(str);
}