i am creating a dynamic text box of input type with the help of following code i am not able to set the focus on the input type.
var elem = document.createElement("input");
elem.type = "text";
elem.id = "txtParent";
elem.setAttribute('onblur', 'SetSpanValueForParent("' + spnText.id + '")');
$(elem).focus();
$(spnText).append(elem);
i have also tried doing this elem.focus();
can u provide that one line statement how can i achieve this
You first need to append the input, before setting the focus().
Elements can have focus only if they are visible.
Example: