Hello:
Yes, you are right, that is what the problem is, so I need some way to increment the count and pass the value so that itemCount
is increased by one each time an element is created. I tried different types of looping but does not give me the result I'm
looking for, any ideas?
Thanking You In Advance,
PH
On Thursday, October 17, 2013 8:00:57 PM UTC-5, pame...@aol.com wrote:
-- Yes, you are right, that is what the problem is, so I need some way to increment the count and pass the value so that itemCount
is increased by one each time an element is created. I tried different types of looping but does not give me the result I'm
looking for, any ideas?
Thanking You In Advance,
PH
On Thursday, October 17, 2013 8:00:57 PM UTC-5, pame...@aol.com wrote:
Hello:
I have a question, I have been working on this all day with setAttribute() method. The research and reading I have the done the
below code should work. I ran into an issue which forces me to have to create unique ids for an element.
var itemCount =0;
var newElement = document.createElement('div');
newElement.setAttribute("id", 'updateCC ); //This works fine when I do the following test
if(document.getElementById('updateCC')){
//do stuff
alert("Found it updateCC" );
}
else {
alert("Not found updateCC" );
}
Found
but when I do the following
newElement.setAttribute("id", 'updateCC' + itemCount);
The previous test fails, I even tried
if(document.getElementById('updateCCD' + itemCount)){
//do stuff
alert("Found it updateCC" + itemCount);
}
else {
alert("Not found updateCC" + itemCount);
}
It will give me the count but it still fails saying Not found
My documents(books) and Google searches, it should work.
What am I missing here.
Thanking You in Advance, I work on this all day and it has put me at a stand still.
PH
You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.