createElement tabIndex
Posted: Thu Jan 24, 2008 10:37 am
hello,
I am using the createElement and appendChild functions to dynamically create input text fields for a form....
on a for loop in creating the element i am doing :-
While in FF i am able to retrieve the "tabIndex" of the element field i am NOT able to do so in IE...i am able to retrieve the name however...
...is this a IE bug or is there "another" way that i am to access the tabIndex?
Kendall
I am using the createElement and appendChild functions to dynamically create input text fields for a form....
on a for loop in creating the element i am doing :-
Code: Select all
inputObject.onchange = checkLetter;
// the checker function
function checkLetter (){
var ele = this;
var ind = ele.tabIndex;
alert(this.tabIndex+'/'+this.name);
var letter = word.charAt(ind);
var val = ele.value;
....
...is this a IE bug or is there "another" way that i am to access the tabIndex?
Kendall